在python中打印所有循环一次/一起

时间:2015-01-10 18:50:40

标签: python loops add

如果我有一个简单的for循环:

for i in range(10):
   total = 0
   total = total + i
   print(total)

如何一次/一起打印循环,如:

1 2 3 4 5 6 7 8 9 

而不是每个循环本身:

1
2
3 etc

1 个答案:

答案 0 :(得分:2)

for i in range(10):
   total = 0
   total = total + i
   print(total,end=" ")

print函数的功能,每行的结尾从\n更改为" "