python print不要括号
时间: 2023-11-04 19:19:59 浏览: 151
python 实现有效的括号
可以使用以下方式将Python的print语句输出的括号去掉:
```python
from __future__ import print_function
print "Hello, World!", # 在语句末尾加上逗号
```
或者在Python 3中直接使用:
```python
print("Hello, World!", end="")
```
这样可以输出不带括号的内容。但是需要注意的是,这种方式可能会降低代码的可读性,因此在实际编写中要根据需要进行选择。
阅读全文