python去除字符串前后空格
时间: 2023-08-07 09:10:53 浏览: 90
可以使用字符串对象的 `strip()` 方法,该方法将会返回一个去除了前后空格的新字符串。
例如:
```python
s = " hello, world! "
s_stripped = s.strip()
print(s_stripped) # Output: "hello, world!"
```
此外,还可以使用 `lstrip()` 方法去除左侧空格,或使用 `rstrip()` 方法去除右侧空格。
相关问题
python去除字符串所有空格
可以使用字符串的replace()方法,将空格替换为空字符串。
例如:
```
s = " hello world "
s = s.replace(" ", "")
print(s) # 输出"helloworld"
```
另外,也可以使用正则表达式re模块的sub()方法,将匹配到的空格替换为空字符串。
例如:
```
import re
s = " hello world "
s = re.sub(r"\s+", "", s)
print(s) # 输出"helloworld"
```
其中,\s表示匹配任意空白字符,包括空格、制表符和换行符等;+表示匹配前面的字符一次或多次。
python去除字符串首尾空格
可以使用strip()函数来去除字符串首尾空格,例如:
```
str = " hello world "
new_str = str.strip()
print(new_str)
```
输出结果为:
```
hello world
```
阅读全文