我只是在 pygame 中进行一些开发,但遇到了一些非常奇怪的麻烦。这是我的代码:
import pygame, sys
from pygame.locals import *
#Declarin some variables
WINHEIGHT = 320
WINWIDTH = 640
red = (255, 0, 0)
pygame.init()
DISPLAY = pygame.display.set_mode((WINWIDTH, WINHEIGHT))
pygame.display.set_caption('My First PyGame')
FONT = pygame.font.Font(None, 32)
while True:
pygame.draw.circle(DISPLAY, red, (100, 100)
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
我在第 18 行收到一个无效的语法错误,说
for event in pygame.event.get():
^
即使不是语法错误,也有帮助吗?