这可以用轻松完成打印() 函数 与
Python 3中 。
for i in x: print(i, end="") # substitute the null-string in place of newline
会给你
......
在 Python v2中, 您可以通过以下方式使用该
print()函数:
from __future__ import print_function
作为源文件中的 第一条 语句。
如print()文档所述:
Old: print x,# Trailing comma suppresses newlineNew: print(x, end=" ") # Appends a space instead of a newline
请注意,这类似于我最近回答的问题(https://stackoverflow.com/a/12102758/1209279),其中包含一些有关此
print()功能的其他信息(如果您感到好奇)。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)