在Python 2.x中,我写了......
for i in range(5):
print i,
...从同一行打印0到4的整数。如何在Python 3.x中执行此操作,因为print现在是一个函数?
答案 0 :(得分:7)
使用print(x, end = ' ')
:
Old: print x, # Trailing comma suppresses newline
New: print(x, end=" ") # Appends a space instead of a newline