Python 字符串 startswith() 方法

实例

检查字符串是否以 "Hello" 开头:

  1. txt = "Hello, welcome to my world."
  2. x = txt.startswith("Hello")
  3. print(x)

定义和用法

如果字符串以指定的值开头,则 startswith() 方法返回 True,否则返回 False。


语法

  1. string.startswith(value, start, end)
参数值
参数描述
value必需。检查字符串是否以其开头的值。
start可选。整数,规定从哪个位置开始搜索。
end可选。整数,规定结束搜索的位置。

更多实例

检查位置 7 到 20 是否以字符 "wel" 开头:

  1. txt = "Hello, welcome to my world."
  2. x = txt.startswith("wel", 7, 20)
  3. print(x)

分类导航