例如:
判断字符串是否以“Hello”开头:
txt = "Hello, welcome to my world."
x = txt.startswith("Hello")
print(x)
1、定义和用法
如果字符串以指定的字符串开头,则startswith()
方法将返回True,否则返回False。
2、调用语法
string.startswith(value, start, end)
3、参数说明
参数 | 描述 |
value | 必需的参数,检查字符串是否以该字符串开头 |
start | 可选的。一个整数,指定从哪个位置开始搜索 |
end | 可选的。一个整数,指定结束搜索的位置 |
4、使用示例
例如:
判断位置7到20是否以字符“wel”开头:
txt = "Hello, welcome to my world."
x = txt.startswith("wel", 7, 20)
print(x)