搜尋

首頁  >  問答  >  主體

Python如何让倒计时效果的在固定区域刷新

高洛峰高洛峰2805 天前1631

全部回覆(1)我來回復

  • PHP中文网

    PHP中文网2017-04-17 15:10:26

    不好意思,又是我。
    再科普一個 "b" 是退格的意思,它會向左移動一格並刪除該格子上現實的字符,詳情請參考ascii編碼表

    辦法無非就兩個

    1) 整行覆蓋。

    pythonimport sys, time
    
    def interface_show(**kwargs):
        lineTmpla = ' '*5 + kwargs['title'] + kwargs['artist'] + kwargs['rate'] + " %-3s"
        print time_remain(lineTmpla, kwargs['minutes']),
    
    def time_remain(lineTmpla, mins):
        count = 0 
        while (count < mins):
            count += 1
            n = mins - count
            time.sleep(1)
            sys.stdout.write("\r" + lineTmpla %(n),)
            sys.stdout.flush()
            if not n:
                return 'completed'
    
    interface_show(title="倒计时demo", artist="哗嚓啊", rate="揍起来", minutes=5)
    

    2) 局部覆蓋

    需要移動遊標,在下暫時只知道 b,有人知道其它並願意告知的話就太感謝了

    pythonimport sys, time
    
    def interface_show(**kwargs):
        print ' '*5, kwargs['title'], kwargs['artist'], kwargs['rate'], time_remain(kwargs['minutes'])
    
    def time_remain(mins):
        count = 0
        length = len(str(mins))
        sys.stdout.write(" " * length,)
        while (count < mins):
            count += 1
            n = mins - count
            time.sleep(1)
            sys.stdout.write(('\b' * length) + str(n),)
            sys.stdout.flush()
            if not n:
                return 'completed'
    
    interface_show(title="倒计时demo", artist="哗嚓啊", rate="揍起来", minutes=5)
    

    回覆
    0
  • 取消回覆