LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1057|回复: 0

-\|/ 字符转动显示(rubbish)

[复制链接]
发表于 2006-9-14 13:51:10 | 显示全部楼层 |阅读模式
[php]
#!/usr/bin/python
#Filename:splash.py

import time,random,sys,os

#splashA = ('a','b','c','d','e','f','g')
#splashB = ('-','\\','|','/')

def splash(splash,step = 2,interval = 0.2,times = 25):
        "splash is a (), step could be 1,2 or 3, interval is a float number for seconds"

        j = 0
        for i in range(times):
                print splash[j],
                j += 1
                j %= len(splash)
                print '\b'*step,
                sys.stdout.flush()
                time.sleep(interval)

#splash(splashB,step = 2)
[/php]
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表