Posted in Python onOctober 27, 2018
如下所示:
str='abcdef' print(str.endswith('f')) print(str.startswith('a'))
输出结果:
True True
str='abcdef' print(str.endswith('f',0,4)) print(str.startswith('a',1))
输出结果:
False False
以上这篇Python判断以什么结尾以什么开头的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
Python判断以什么结尾以什么开头的实例
- Author -
勿在浮沙筑高台LS声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@