如何让python等待按下的键?

如何让python等待按下的键?,第1张

如何让python等待按下的键?

Python 3中 使用

input()

input("Press Enter to continue...")

Python 2中 使用

raw_input()

raw_input("Press Enter to continue...")

不过,这仅等待用户按下Enter键。

可能要使用 msvcrt ((仅Windows / DOS)使用 msvcrt 模块可以访问Microsoft Visual C / C
++运行时库(MSVCRT)中的许多功能):

import msvcrt as mdef wait():    m.getch()

这应该等待按键

附加信息:

Python 3

raw_input()
中不存在

在Python 2

input(prompt)
中等效于
eval(raw_input(prompt))



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5646597.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存