2

我只是在 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():
                               ^

即使不是语法错误,也有帮助吗?

4

2 回答 2

3

请注意上面的行:

pygame.draw.circle(DISPLAY, red, (100, 100)

您缺少括号:

pygame.draw.circle(DISPLAY, red, (100, 100))
于 2013-01-05T01:17:20.703 回答
1

你 错过了)一个
(pygame.draw.circle(DISPLAY, red, (100, 100) # here!

于 2013-01-12T13:10:43.147 回答