实例
检查字符串是否以 "Hello" 开头:
txt = "Hello, welcome to my world." x = txt.startswith("Hello") print(x)
定义和用法
如果字符串以指定的值开头,则 startswith() 方法返回 True,否则返回 False。
语法
string.startswith(value, start, end)
参数值
更多实例
检查位置 7 到 20 是否以字符 "wel" 开头:
txt = "Hello, welcome to my world." x = txt.startswith("wel", 7, 20) print(x)