码迷,mamicode.com
首页 > 其他好文 > 详细

.startswith

时间:2019-08-05 19:04:58      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:检测   word   位置   指定   back   范围   trend   color   img   

描述

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

语法

startswith()方法语法:

str.startswith(str, beg=0,end=len(string));

参数

  • str -- 检测的字符串。
  • strbeg -- 可选参数用于设置字符串检测的起始位置。
  • strend -- 可选参数用于设置字符串检测的结束位置。

返回值

如果检测到字符串则返回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

.startswith

标签:检测   word   位置   指定   back   范围   trend   color   img   

原文地址:https://www.cnblogs.com/laoqianya/p/11304754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!