以下代码适用于 Python 2 和 Python 3。
但对于 Python 3,请参阅 Ramchandra Apte 的好答案。
from sys import stdout
from time import sleep
for i in xrange(5,0,-1):
stdout.write(str(i))
sleep(1)
stdout.write(' Blastoff')
这str(i)
是必要的,以便此代码在命令行窗口中执行。在 EDIT shell 窗口中,它可以被写入,stdout.write(i)
但'\b'
信号不会将光标移回,它会出现一个正方形来代替它。
.
顺便说一下,试试下面的代码看看会发生什么。'\b'
触发光标向后移动一个位置,替换前面的字符,因此每个字符都写在时间前面的那个位置。这仅适用于命令行窗口,不适用于 EDIT shell 窗口。
from sys import stdout
from time import sleep
for i in xrange(5,0,-1):
stdout.write(str(i))
sleep(1)
stdout.write('\b')
stdout.write('Blastoff')
raw_input('\n\npause')
复杂化(仍然在命令行窗口中执行):
from sys import stdout
from time import sleep
tu = (' End in 24 seconds',
' It remains 20 seconds',
' Still only 16 seconds',
' Do you realize ? : 12 seconds left !',
' !!!! Hey ONLY 8 seconds !!')
for s in tu:
stdout.write('*')
sleep(1)
stdout.write(s)
sleep(2)
stdout.write(len(s)*'\b' + len(s)*' ' + len(s)*'\b')
sleep(1)
stdout.write(len(tu)*'\b' + len(tu)*'!' + ' ')
n = 4
for x in xrange(n,0,-1):
stdout.write('\b!'+str(x))
sleep(1)
stdout.write(len(tu)*'\b' + n*'\b' + '\b')
stdout.write(' # !! BLASTOUT !! #\n')
sleep(0.8)
stdout.write(' ## !! BLASTOUT !! ##\n')
sleep(0.8)
stdout.write(' ### !! BLASTOUT !! ##\n')
sleep(0.8)
stdout.write(' #### !! BLASTOUT !! ####\n')
sleep(3)