python 字符串切片 切到空格
时间: 2023-10-10 19:13:22 浏览: 172
Python切片操作去除字符串首尾的空格
5星 · 资源好评率100%
可以使用字符串的 `split()` 方法将字符串按照空格分割成一个列表,然后再取出第一个元素即可。例如:
```python
s = "python 字符串切片 切到空格"
first_word = s.split()[0]
print(first_word) # 输出 "python"
```
另外,如果你想从字符串的开头一直切到第一个空格,可以使用字符串的切片语法,以空格的索引作为切片的终止位置。例如:
```python
s = "python 字符串切片 切到空格"
first_word = s[:s.index(' ')]
print(first_word) # 输出 "python"
```
阅读全文