Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Python 中的 curses 模块有点挣扎。我试图让它显示这个不断更新的语句(在循环中):
print(i/(time.time()-start_time))
在一行而不是多行。最简单的方法是什么?
可能你可以使用这样的东西。你只需要根据你的需要调整它。
import curses import time scr = curses.initscr() while True: try: scr.addstr(0, 0, str(time.time())) scr.refresh() except KeyboardInterrupt: break curses.endwin()