>>> from __future__ import print_function >>> print('a', end='') 显然,这仅适用于 python 3.0 或更高版本(或 2.6+ 开头带有 from __future__ import print_function)。在 Python 3.0 中, print 语句被删除并成为 print() 函数。原文由 Antoine Pelisse 发布,翻译遵循 CC BY-SA 4.0 许可协议 ...