欢迎您 本站地址:  
返回首页   返回编程教学   诗词名句  tiktok副业  卡通音效  常用电话列表  精选  三国志  晋书  消食健胃茶 

Python startswith()方法

Python 字符串 Python 字符串


描述

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

语法

startswith()方法语法:

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

参数

返回值

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

Python 字符串 Python 字符串

小库提示

扫描下方二维码,访问手机版。