看个好玩的代码

看个好玩的代码

我在aspn上看到的,有意思啊

#! /usr/local/bin/python
import time, sys

rotor  = "|/-\\|/-\\"
baloon = " .oO@@Oo. "
square = " _uUOOUu_ "
dash   = "_-=##=-_ "
rotor2 = "3WEM"

w = sys.stdout.write; f = sys.stdout.flush

def main(them):
    status = 0; n = len(them); n2 = 3*n
    while True:
        w(them[status % n]); f()
        time.sleep(0.1)
        status += 1
        if not (status%n2): w('\b.')
        else:               w('\b')

if __name__ == '__main__':
##    main(rotor)
##    main(baloon)
    main(rotor)
PYTHON混乱码?
此rotor非彼rotor
哈哈

好玩
'\b'  是不是相当于键盘上的后退键啊
小弟不才改进了一下.

[Copy to clipboard] [ - ]
CODE:
#! /usr/bin/python
import time, sys
def usage():
        print "Usage: %s [ rotor | baloon | square | dash | rotor2 ]" % (sys.argv[0],)
if len(sys.argv) == 1:
        usage()
        sys.exit (1)
rotor  = "|/-\\|/-\\"
baloon = " .oO@@Oo. "
square = " _uUOOUu_ "
dash   = "_-=##=-_ "
rotor2 = "3WEM"

w = sys.stdout.write; f = sys.stdout.flush

def main(them):
    status = 0; n = len(them); n2 = 3*n
    while True:
        w(them[status % n]); f()
        time.sleep(0.1)
        status += 1
        if not (status%n2): w('\b.')
        else:               w('\b')

if __name__ == '__main__':
        main(sys.argv[1])

刚开始学这个.以后各位请各位大哥不吝赐教!
这段代码一般不是拿来单独使用的。当你在程序中将要运行某个很耗时的操作(比如大文件的拷贝),你又要告诉程序的使用者说,程序虽然暂时没有响应,但它还是在正确的运行,那么你就开个线程运行上面的代码,把
while True换成while flag,当耗时的操作完成后将flag设为false。用户看到转子在转,就知道程序没有挂掉。
有游戏经验的朋友应该记得有些游戏在即将安装完时会出现命令行窗口解压某些文件,解压时就会出现转子的转动。
对"改进版本"的改进:
  由于参数是当作字符串传入,而非变量传入, 故main函数应该增加如下语句:

def main(them):
    if them == 'rotor':
        them = rotor
    elif them == 'baloon':
        them = baloon
    elif them == 'square':
        them = square
    elif them == 'dash':
        them = dash
    elif them == 'rotor2':
        them = rotor2
    status = 0; n = len(them); n2 = 3*n
    while True:
< 以下相同 >