📜  如何在 for 循环中添加变量 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:31.147000             🧑  作者: Mango

代码示例1
n = 5
while n > 0:
    print n
    n = n-1
print 'Blastoff!'