去掉左右换行符和空格 s = '\n\nhello\t\t world \n\n\n My name\t is Dong '
时间: 2023-07-04 14:27:34 浏览: 70
去掉换行符
4星 · 用户满意度95%
可以使用字符串的strip()方法去掉左右的空格和换行符,代码如下:
```
s = '\n\nhello\t\t world \n\n\n My name\t is Dong '
s = s.strip()
print(s)
```
输出结果为:
```
hello world
My name is Dong
```
strip()方法会去掉字符串开头和结尾的空格和换行符。如果想要去掉字符串中间的空格,可以使用replace()方法,将空格替换为空字符串。
阅读全文