橘子味的心
标题:Python3 字符串String Endswith 方法

Python3 字符串String Endswith 方法

#!/usr/bin/python3

Str='this is string example....wow!!!'
suffix='!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))
suffix='exam'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))

目录

分类