停止代码的功能(当终端未激活时)
有没有一个函数可以停止键盘输入的 while 循环?假设终端或 ide 未激活,因此 if Keyboard.is_pressed('e'): 不起作用。这不是为了游戏。
Is there a function that can stop a while loop on keyboard input? Assume that the terminal or ide isn't active and thus if keyboard.is_pressed('e'): wouldn't work. This is not for a game.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以通过单击“Ctrl+C”来获得键盘中断,您可以这样做
If it will work for you to have a KeyboardInterrupt i.e. by clicking "Ctrl+C", you can do it like this