1
lzachilles 2015-06-11 17:20:26 +08:00 1
ncursor
|
2
rudy1224 2015-06-11 17:38:42 +08:00 1
http://www.zhihu.com/question/21100416
Unix平台下用python标准库里边自带的Curses, Windows下可以用Console。 试了一下(windows 8.1, python 2.7): import Console import time c = Console.getconsole() c.title("myprint") # 输出到指定位置 for i in xrange(1000): c.text(0, 0, str(i)) c.text(0, 1, str(i+1)) time.sleep(0.1) 得到的是这样: |
3
aec4d 2015-06-11 19:21:37 +08:00
和我这2天关注的需求一样~~这里有个不错的案例https://github.com/aaren/multi_progress
|