11章 动手试一试

2017-07-03  本文已影响0人  然2016
import time
seconds = int(raw_input("Countdown timer:How many seconds?"))
for i in range(seconds,0,-1):
    print i,
    print i*'*'
    time.sleep(1)
print "BLAST OFF!"
Countdown timer:How many seconds?5
5 *****
4 ****
3 ***
2 **
1 *
BLAST OFF!```
体会:我总觉得难了,周五就练习到这里了,但是今天才做出来,又把嵌套的内容看了一遍 - - 其实不难,可能就是懒,大脑也会偷懒。
上一篇下一篇

猜你喜欢

热点阅读