爬虫python去掉换行符
时间: 2024-03-05 14:46:40 浏览: 231
python去除字符串中的换行符
5星 · 资源好评率100%
在Python中,可以使用字符串的`strip()`方法去掉换行符。`strip()`方法可以去掉字符串开头和结尾的指定字符,默认情况下会去掉空格、制表符和换行符。
以下是一个示例代码,演示如何去掉字符串中的换行符:
```python
text = "Hello\nWorld!\n"
clean_text = text.strip()
print(clean_text)
```
输出结果为:
```
Hello
World!
```
如果你只想去掉字符串末尾的换行符,可以使用`rstrip()`方法,示例如下:
```python
text = "Hello\nWorld!\n"
clean_text = text.rstrip("\n")
print(clean_text)
```
输出结果为:
```
Hello
World!
```
阅读全文