关于Python print之谜:如何在没有空格的情况下打印

Python print mystery - How to print without a space

本问题已经有最佳答案,请猛点这里访问。

如何具有与下面的Python2.7相同的功能。没有未来。

1
print(item, end="")


在python 3中出现奇妙的end=(和sep=之前,我曾在字符串中建立行,一次打印出字符串:

1
2
3
4
str ="Three integers:"
for iii in range (3):
    str ="%s %d" % (str, iii)
print s

不用说,我不再用python 2编写代码了:—)


这对你有用吗?

1
2
import sys
sys.stdout.write(item)