美文网首页
python实现跑马灯文字效果

python实现跑马灯文字效果

作者: 以我丶之姓 | 来源:发表于2021-02-20 14:13 被阅读0次
import os
import time


def main():
    content = '惊雷!这通天地刹紫金锤…………'
    while True:
        # 清理屏幕上的输出
        os.system('clear')  # os.system('clear')
        print(content)
        # 休眠200毫秒
        time.sleep(0.2)
        content = content[1:] + content[0]


if __name__ == '__main__':
    main()

相关文章

网友评论

      本文标题:python实现跑马灯文字效果

      本文链接:https://www.haomeiwen.com/subject/dvntfltx.html