Python:使用密钥中断执行并再次运行

时间:2010-09-29 14:20:31

标签: python

如何用键中断python执行并在再次按下键时继续运行?

感谢

1 个答案:

答案 0 :(得分:0)

如果你正在使用pygame,你可以检查键事件并使用布尔开关。

def check_pause(self):
    for event in pygame.event.get():
        if event.type == pygame.KEYDOWN:
            if event.key == pygame.K_p:
                self.pause = not self.pause

类似的东西,附在

while True:
    self.check_pause()
    if self.pause:
        continue
    # Main loop of program goes here.