Python startswith()方法
Python startswith()方法
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/b64/"; print str.startswith( 'this' ); print str.startswith( 'is', 2, 4 ); print str.startswith( 'this', 2, 4 );
以上实例输出结果如下:
True True False
相关文章
- Python 教程
- Python 简介
- Python 变量类型
- Python GUI编程 Tkinter
- Python 搜索算法
- Python3 运算符
- Python3 字符串(String)
- Python3 作用域
- Python MongoDB 数据库连接 - PyMongo 驱动
- Python File readlines() 方法
- Python File seek() 方法
- Python File truncate() 方法
- Python os.closerange() 方法
- Python os.link() 方法
- Python os.stat() 方法
- Python os.stat_float_times() 方法
- Python max()方法
- Python splitlines()方法
- Python title()方法
- Python time mktime()方法