📜  如何在不按回车的情况下在 python 中获取用户的输入 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:20.959000             🧑  作者: Mango

代码示例1
import keyboard
while not keyboard.ispressed("s"):
    print("none")
if keyboard.ispressed("s"):
    print("bottun pressed!")