最近刷Leetcode时在一些题目上卡了很长时间,看题解时,一些大神用很巧妙的Python内置函数解决了问题。
startswith
首先是startswith函数,这个函数直接使用即可,不需要导入collections等包。
str.startswith(prefix, beg=0,end=len(string));
这里阔以看到stratswith接受三个参数,其中两个有默认值。
Python startswith() 方法用于检查字符串是否是以指定子字符串prefix开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。
- prefix -- 要匹配的前缀字符串。
- strbeg -- 可选参数,用于设置字符串检测的起始位置。
- strend -- 可选参数,用于设置字符串检测的结束位置。
如果检测到字符串则返回True,否则返回False。
#!/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
网友评论