Python而Loop常见错误

时间:2015-09-29 10:11:12

标签: python

我是这个论坛的新手,我想问一下有关Python的问题。这里有一个常见的循环问题。打印空白可以有人向我解释为什么打印空白?谢谢。

i=0
sum=0
while sum<10:
 i+=1
sum+=i
print(i, '', sum)

1 个答案:

答案 0 :(得分:0)

i,sum= 0,0
while sum<10:
   i=i+1
   sum +=i
   print(str(i)+" "+str(sum)) #we need to convert to string as space is string and others are int

输出

1 1
2 3
3 6
4 10