curses的使用 python用户输入显示文字curses.wrapper()
用户输入while True: c = stdscr.getch() # 返回按下的键的ascii码的值,整数型 if c == ord('p'): PrintDocument() elif c == ord('q'): break # 退出循环 elif c == curses.KEY_HOME: x = y = 0显示文字a...