等待特定的按键

时间:2016-11-17 23:21:21

标签: python macos python-3.x raspbian

如何让Python 3.5.2等待在Raspbian或OS X上按空格键?我无法找到任何方法来做到这一点。如果它甚至没有暂停代码就好了,我不关心许可。

1 个答案:

答案 0 :(得分:0)

正如jonsharpe所述,您可以使用等待输入的input,如果您熟悉batch,您会感到宾至如归。

只需使用:

print('Waiting for enter')
pause = input('') #This will wait until you press enter before it continues with the program
print('You pressed enter!')
#Program terminates

我找到了适用于Windows的解决方案,但我找不到任何针对Raspbian或OS X的具体解决方案。我会继续寻找,如果我发现任何内容,我会更新帖子。