Re: [問題] 如何持續更新print內容

作者: rexyeah (ccccccc)   2018-09-22 21:49:46
有找到一個比\r好用
curses (https://goo.gl/ivB5YG)
import curses
import sys
import time
from datetime import datetime
import random
def main(stdscr):
for i in range(10):
stdscr.clear()
stdscr.addstr("CurrentTime: %s\n" % datetime.now())
stdscr.addstr("Num: %d\n" % (i+1))
stdscr.addstr("Choice: %s" % ['a', 'b', 'c', 'd'][random.randint(0, 3)])
time.sleep(0.5)
stdscr.refresh()
main(curses.initscr())
※ 引述《renshin (阿信)》之銘言:
: 各位大大好
: 想請教如何持續更新顯示內容
: 目前google查到都只能處理一行
: 若我的內容有多行以上可以如何達到這個功能呢?
: ex:
: 現在時間:A
: 人數:B
: 其他:C
: 以上是顯示範例
: 希望能在print的時候永遠只顯示3行,只更新ABC變數
: 還請大大們教學,感恩
作者: renshin (阿信)   2018-09-25 10:58:00
請問這是for python2.x嗎?我在3跑有error我再嘗試看看,感謝分享
作者: rexyeah (ccccccc)   2018-09-25 12:04:00
我是2.7 on Ubuntu std lib. Windows要安裝curses mod.

Links booklink

Contact Us: admin [ a t ] ucptt.com