import time
for i in range(10,0,-1):
print i
time.sleep(1)
print "Blast off!"
以上代码循环意思为:
从10 到 1 每次递增-1,并睡眠1秒
最后跳出for,打印“Blast off”
Python的代码块,用缩进来表示,不是大括号,需要注意代码的缩进程度
import time
for i in range(10,0,-1):
print i
time.sleep(1)
print "Blast off!"
以上代码循环意思为:
从10 到 1 每次递增-1,并睡眠1秒
最后跳出for,打印“Blast off”
Python的代码块,用缩进来表示,不是大括号,需要注意代码的缩进程度