'is',That is is a table. 'many',There are many many apples. 结果在最后多一整行空格怎么办
时间: 2024-03-06 15:48:12 浏览: 49
不必用在因为copy东西烦恼了 删空格 可以帮你
你可以使用 `rstrip()` 方法去掉字符串末尾的空格和换行符。例如,在上面的示例代码中,我们可以将最后的输出语句修改为:
```python
for word, line in result:
print(f"'{word}',{line.rstrip()}")
```
这里使用 `rstrip()` 方法去掉了每一行末尾的空格和换行符,以消除多余的空行。
阅读全文