0

我在 Python 中的 curses 模块有点挣扎。我试图让它显示这个不断更新的语句(在循环中):

print(i/(time.time()-start_time))

在一行而不是多行。最简单的方法是什么?

4

1 回答 1

2

可能你可以使用这样的东西。你只需要根据你的需要调整它。

import curses
import time

scr = curses.initscr()
while True:
    try:
        scr.addstr(0, 0, str(time.time()))
        scr.refresh()
    except KeyboardInterrupt: break
curses.endwin()
于 2014-04-26T19:42:17.223 回答