python 判断字符串以什么开头
时间: 2023-12-23 12:04:29 浏览: 141
Python识别字符串
你可以使用字符串的 startswith() 方法来判断一个字符串是否以某个字符或子串开头,例如:
```python
s = "hello world"
if s.startswith("hello"):
print("s starts with 'hello'")
```
输出:
```
s starts with 'hello'
```
你也可以传入一个元组作为参数,判断字符串是否以其中任意一个元素开头,例如:
```python
s = "hello world"
if s.startswith(("hello", "hi")):
print("s starts with 'hello' or 'hi'")
```
输出:
```
s starts with 'hello' or 'hi'
```
阅读全文