我正在制作一个简单的 pygame 游戏。我的问题是,当我尝试检查用户是否单击退出按钮时,出现错误。这是代码:
for event in pygame.event.get():
if event.type == pygame.QUIT():
pygame.quit()
sys.exit()
这是错误:
Traceback (most recent call last):
File "C:\Users\Rafi\Python Programs\Game.py", line 20, in <module>
if event.type == pygame.QUIT():
TypeError: 'int' object is not callable
此外,这可能不会,但我在 Windows 8 上。