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)
自己尝试 »