字符串去除左右空格和tab键
时间: 2024-05-04 17:18:15 浏览: 272
trim()方法.md
在 Python 中,可以使用 `strip()` 方法来去除字符串左右两侧的空格和 tab 键。例如:
```
s = " \t Hello, world! \t "
s = s.strip()
print(s)
```
输出结果为:
```
Hello, world!
```
注意,`strip()` 方法只会去除字符串两侧的空格和 tab 键,而不会去除字符串中间的空格和 tab 键。如果需要去除字符串中间的空格和 tab 键,可以使用 `replace()` 方法。例如:
```
s = " \t Hello, world! \t "
s = s.replace(" ", "").replace("\t", "")
print(s)
```
输出结果为:
```
Hello,world!
```
阅读全文