我剛剛開始學習while循環。使用while循環迭代相同的數字
我想使用while循環迭代10次相同的數字。
我想通了,我怎麼能利用while循環,以阻止在某一點,因爲它增加
但我無法弄清楚如何停止在某一點,而無需添加1和設置限制。
這裏是我的代碼
i = 1
total = 0
while i < 11:
print i
i += 1
total = i + total
print total
這將打印
1,2,3,4,5,6,7,8,9,10,65
在單獨的行中
我該如何修改此結果?
1,1,1,1,1,1,1,1,1,1,10?
這仍然會在最後打印65而不是10。 。 。 – ernie
@ernie:已更正。 –
啊,我明白了。這完成了這項工作。我明白。謝謝 – Flow