python 字符串截取倒数第一个空格
时间: 2023-06-22 16:36:12 浏览: 223
python清除字符串前后空格函数的方法
5星 · 资源好评率100%
可以使用Python的字符串切片功能,通过从后往前查找空格来截取字符串。具体实现如下:
```python
s = "hello world how are you"
last_space_index = s.rfind(" ")
if last_space_index != -1:
new_s = s[:last_space_index]
print(new_s)
else:
print("No space found in the string.")
```
这里使用了字符串的`rfind()`方法来查找最后一个空格的位置,如果找到了则使用切片的方式截取字符串。如果字符串中没有空格,则输出提示信息。
阅读全文