Python 判断字符串是否以特定字符结尾
在 Python 中,我们可以使用字符串的 endswith()
方法来判断一个字符串是否以特定的字符或子字符串结尾。这个方法返回一个布尔值,如果字符串以指定的字符或子字符串结尾,则返回 True
,否则返回 False
。
实例
# 定义一个字符串
text = "Hello, world!"
# 判断字符串是否以 "world!" 结尾
result = text.endswith("world!")
# 输出结果
print(result)
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
的值,即True
或False
。
输出结果:
True
在这个例子中,字符串 "Hello, world!"
以 "world!"
结尾,因此 endswith()
方法返回 True
。
点我分享笔记