startswith函数
时间: 2024-01-05 17:04:16 浏览: 23
在Python中操作字符串之startswith()方法的使用
startswith函数是Python中的字符串方法之一,用于判断一个字符串是否以指定的字符串开头。该函数的语法如下:
```python
str.startswith(prefix[, start[, end]])
```
其中,prefix是要匹配的前缀,start和end是可选的起始和结束索引,用于限制匹配的范围。如果字符串以指定的前缀开头,则返回True,否则返回False。
例如:
```python
s = 'hello world'
print(s.startswith('he')) # True
print(s.startswith('world')) # False
print(s.startswith('lo', 3, 6)) # True,从第4个字符开始到第7个字符结束的子串是'lo '
```
阅读全文