python的startswith()函数
程序员文章站
2023-12-22 12:13:04
...
描述
- 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 ))
Output:
------
True
True
False
------
以上实例输出结果如下:
True True False
推荐阅读
-
python的startswith()函数
-
php中字符串函数strtr, str_replace和preg_replace的效率对比
-
PHP中的gzcompress、gzdeflate、gzencode函数详解
-
java实现顺序结构线性列表的函数代码
-
使用Python实现下载网易云音乐的高清MV
-
关于JS 回掉函数的使用_html/css_WEB-ITnose
-
php的chr和ord函数实现字符加减乘除运算实现代码
-
MySQL中DATABASE()和CURRENT_USER()函数的示例详解
-
jdbc-mysql数据库的PASSWORD函数在数据库的表中设置密码有什么限制?
-
PHP写的求多项式导数的函数代码