如何在没有空间的情况下打印
这个问题在这里已经有了答案:
这对你有用吗?
import sys
sys.stdout.write(item)
在奇妙的end=
(和sep=
)出现在Python 3之前,我曾经在字符串中建立行,并在一次打印中打印出字符串:
str = "Three integers:"
for iii in range (3):
str = "%s %d" % (str, iii)
print s
不用说,我不再使用Python 2进行编码:-)
链接地址: http://www.djcxy.com/p/77223.html