Python 判断字符串是否以特定字符结尾

Document 对象参考手册 Python3 实例

在 Python 中,我们可以使用字符串的 endswith() 方法来判断一个字符串是否以特定的字符或子字符串结尾。这个方法返回一个布尔值,如果字符串以指定的字符或子字符串结尾,则返回 True,否则返回 False

实例

# 定义一个字符串
text = "Hello, world!"

# 判断字符串是否以 "world!" 结尾
result = text.endswith("world!")

# 输出结果
print(result)

代码解析:

  • text = "Hello, world!":定义一个字符串变量 text,其值为 "Hello, world!"
  • result = text.endswith("world!"):使用 endswith() 方法检查 text 是否以 "world!" 结尾,并将结果存储在变量 result 中。
  • print(result):输出 result 的值,即 TrueFalse

输出结果:

True

在这个例子中,字符串 "Hello, world!""world!" 结尾,因此 endswith() 方法返回 True

Document 对象参考手册 Python3 实例