Python 字符串中 startswith()方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 字符串中 startswith()方法相关的知识,希望对你有一定的参考价值。

Python startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。

str.startswith(str, beg=0,end=len(string));
#!/usr/bin/python

str = "this is string example....wow!!!";
print str.startswith( ‘this‘ );
print str.startswith( ‘is‘, 2, 4 );
print str.startswith( ‘this‘, 2, 4 );

  结果:

True
True
False

  

以上是关于Python 字符串中 startswith()方法的主要内容,如果未能解决你的问题,请参考以下文章

Python startswith()方法

Python startswith()函数 与 endswith函数

[转]python的startswith()方法

Python startswith()方法

python基础教程:startswith()和endswith()的用法

Python: 字符串开头或结尾匹配str.startswith(),str.endswith()