while 1: s = ord(msvcrt.getch()) if s in [81, 113]: break if a > 0: ......... if b: .....
用这个方法它会一直停在 ord 那行等待输入。 怎么能让它不影响下面的 if 运行。又能在按 q 时退出 呢? 谢谢