python取消换行
时间: 2023-10-30 19:58:56 浏览: 212
Python正则表达式完全讲解
在 Python 中,取消换行可以通过在 print() 函数中使用 `end` 参数来实现。`end` 参数默认为换行符 '\n',如果你想取消换行,可以将它设置为空字符串。
例如:
```python
print('Hello,', end='')
print('world!')
```
输出:
```
Hello,world!
```
这样就能在两次 print() 调用之间取消换行。
阅读全文