美文网首页python百例
49-动画程序:@从一行#中穿过

49-动画程序:@从一行#中穿过

作者: 凯茜的老爸 | 来源:发表于2018-07-31 15:13 被阅读11次

    \r是回车不换行

    import time
    
    length = 19
    count = 0
    
    while True:
        print('\r%s@%s' % ('#' * count, '#' * (length - count)), end='')
        try:
            time.sleep(0.3)
        except KeyboardInterrupt:
            print('\nBye-bye')
            break
        if count == length:
            count = 0
        count += 1
    

    相关文章

      网友评论

        本文标题:49-动画程序:@从一行#中穿过

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