python去除行尾换行符
时间: 2023-08-28 08:22:28 浏览: 131
python去掉行尾的换行符方法
在Python中,可以使用`strip()`方法去除字符串行尾的换行符。这个方法会移除字符串末尾的所有空白字符,包括换行符、空格和制表符等。以下是一个示例:
```python
string_with_newline = "Hello World\n"
string_without_newline = string_with_newline.strip()
print(string_without_newline)
```
这段代码会输出`Hello World`,去除了行尾的换行符。你也可以使用`rstrip('\n')`方法来只去除行尾的换行符。希望对你有帮助!如果你还有其他问题,请随时提问。
阅读全文