Python可以使用()函数来判断字符串是否以某个特定的字符串结尾。语法:
Python可以使用endswith()函数来判断字符串是否以某个特定的字符串结尾。
语法:
string.endswith(suffix[, start[, end]])
参数:
suffix -- 指定的字符串
start -- 可选参数,表示在字符串中检查的开始位置
end -- 可选参数,表示在字符串中检查的结束位置
代码实例:
str = "this is string example....wow!!!"
suffix = "wow!!!"
print str.endswith(suffix)
# 输出结果:True