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

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

str -- 检测的字符串。

strbeg -- 可选参数用于设置字符串检测的起始位置。**从0开始计算

strend -- 可选参数用于设置字符串检测的结束位置。**从0开始计算

返回值

如果检测到字符串则返回True,否则返回False。

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
>>>

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-28
  • 2022-01-30
  • 2022-12-23
  • 2021-11-23
  • 2021-09-16
  • 2022-12-23
猜你喜欢
  • 2021-05-28
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案