我正在用python 2.7进行游戏,我有很多raw_inputs()
来问某些问题,例如您的名字。在很多time.sleep()
之前,我也有raw_inputs()
,如果您在执行time.sleep()
时按Enter键,那么raw_input()
会认为Enter键是您的回应。有没有办法忽略键盘的按下或暂时禁用键盘,直到我需要它?顺便说一下,我正在repl.it上进行编码。
我在想这样的事情:
def keyboard_disable():
stuff that disables the keyboard
def keyboard_enable():
stuff that enables the keyboard
#previous game code
keyboard_disable()
time.sleep(3)
keyboard_enable()
name = raw_input("What is your name: ")