时间:2021-07-01 10:21:17 帮助过:51人阅读
以下是startswith()方法的语法:
str.startswith(str, beg=0,end=len(string));
参数
返回值
如果找到匹配的字符串此方法返回true,否则为false。
例子
下面的例子显示了startswith()方法的使用。
#!/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