如下所示:
1
2
3
|
str = 'abcdef'
print ( str .endswith( 'f' ))
print ( str .startswith( 'a' ))
|
输出结果:
1
2
|
True
True
|
1
2
3
|
str = 'abcdef'
print ( str .endswith( 'f' , 0 , 4 ))
print ( str .startswith( 'a' , 1 ))
|
输出结果:
1
2
|
False
False
|
以上这篇Python判断以什么结尾以什么开头的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/baidu_15113429/article/details/77366160