python 去掉换行符
时间: 2023-07-06 08:33:58 浏览: 89
python去除字符串中的换行符
5星 · 资源好评率100%
在 Python 中,可以使用字符串对象的 `replace()` 方法来去掉换行符。例如:
```python
my_string = "Hello\nworld\n!"
new_string = my_string.replace("\n", "")
print(new_string)
```
输出结果为:
```
Helloworld!
```
另外,如果你只想去掉字符串末尾的换行符,可以使用字符串对象的 `rstrip()` 方法。例如:
```python
my_string = "Hello\nworld\n"
new_string = my_string.rstrip("\n")
print(new_string)
```
输出结果为:
```
Hello
world
```
注意,`rstrip()` 方法只会去掉字符串末尾的指定字符,如果字符串中间出现了该字符,不会被去掉。如果想去掉整个字符串中的该字符,需要使用 `replace()` 方法。
阅读全文