Python 字符串 startswith() 方法
实例
检查字符串是否以 "Hello" 开头:
txt = "Hello, welcome to my world." x = txt.startswith("Hello") print(x)
定义和用法
如果字符串以指定的值开头,则 startswith() 方法返回 True,否则返回 False。
语法
string.startswith(value, start, end)
参数值
参数 | 描述 |
---|---|
value | 必需。检查字符串是否以其开头的值。 |
start | 可选。整数,规定从哪个位置开始搜索。 |
end | 可选。整数,规定结束搜索的位置。 |
更多实例
实例
检查位置 7 到 20 是否以字符 "wel" 开头:
txt = "Hello, welcome to my world." x = txt.startswith("wel", 7, 20) print(x)