第1关:去掉字符串首尾空格
时间: 2023-10-09 16:06:10 浏览: 143
字符串去掉空格
可以使用Python中的strip()方法去掉字符串首尾空格。示例代码如下:
```python
s = " hello world "
s = s.strip()
print(s) # 输出"hello world"
```
strip()方法还可以去掉字符串首尾指定的字符,例如:
```python
s = "***hello world***"
s = s.strip("*")
print(s) # 输出"hello world"
```
阅读全文