Python 3 – String startswith() 方法

Python 3 – String startswith() 方法

描述

startswith() 方法检查字符串是否以 str 开头,并可以选择限制匹配的开始和结束索引。

语法

startswith() 方法的语法如下 −

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

参数

  • str − 要检查的字符串。

  • beg − 这是设置匹配边界开始索引的可选参数。

  • end − 这是设置匹配边界开始索引的可选参数。

返回值

如果找到匹配的字符串,则此方法返回 true,否则返回 false。

示例

以下示例显示了使用 startswith() 方法的用法。

#!/usr/bin/python3

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

结果

运行以上程序时,将产生以下结果 −

True
True
False

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程