输出打印在同一行Py3k中

时间:2010-06-05 22:09:10

标签: python python-2.7 python-3.x

在Python 2.x中,我写了......

for i in range(5):
    print i,

...从同一行打印0到4的整数。如何在Python 3.x中执行此操作,因为print现在是一个函数?

1 个答案:

答案 0 :(得分:7)

使用print(x, end = ' ')

来自release notes

Old: print x,           # Trailing comma suppresses newline  
New: print(x, end=" ")  # Appends a space instead of a newline