标签:code 字符串 输出 str 返回值 print 可选参数 判断字符串 color
endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。可选参数"start"与"end"为检索字符串的开始与结束位置。
endswith()方法语法:
str.endswith(suffix[, start[, end]])
如果字符串含有指定的后缀返回True,否则返回False。
以下实例展示了endswith()方法的实例:
#!/usr/bin/python3 Str=‘Runoob example....wow!!!‘ suffix=‘!!‘ print (Str.endswith(suffix)) print (Str.endswith(suffix,20)) suffix=‘run‘ print (Str.endswith(suffix)) print (Str.endswith(suffix, 0, 19))
以上实例输出结果如下:
True
True
False
False
标签:code 字符串 输出 str 返回值 print 可选参数 判断字符串 color
原文地址:https://www.cnblogs.com/change06/p/9545377.html