在 Python 中等待用户按键输入
在 Python 中,有多种方法可以使脚本暂停,直到用户按下任意键。
Python 3
对于Python 3,使用 input() 函数:
input("Press Enter to continue...")
这将停止执行,直到用户按下 Enter。
Python 2
对于Python 2,请使用 raw_input() 函数:
raw_input("Press Enter to continue...")
但是,两者input() 和 raw_input() 只等待用户按下 Enter。
Windows/DOS
在 Windows/DOS 系统上,可以使用 msvcrt 模块实现这一点:
import msvcrt as m def wait(): m.getch()
wait() 函数将暂停执行,直到按下任意键为止
注释:
以上是如何暂停 Python 脚本直到用户按下某个键?的详细内容。更多信息请关注PHP中文网其他相关文章!