我已经安装了pygame。但是当我尝试从https://www.pygame.org/docs/tut/PygameIntro.html运行以下代码时,看不到图像:
import sys, pygame
pygame.init()
size = width, height = 320, 240
speed = [2, 2]
black = 0, 0, 0
screen = pygame.display.set_mode(size)
ball = pygame.image.load("intro_ball.gif")
ballrect = ball.get_rect()
while 1:
for event in pygame.event.get():
if event.type == pygame.QUIT: sys.exit()
ballrect = ballrect.move(speed)
if ballrect.left < 0 or ballrect.right > width:
speed[0] = -speed[0]
if ballrect.top < 0 or ballrect.bottom > height:
speed[1] = -speed[1]
screen.fill(black)
screen.blit(ball, ballrect)
pygame.display.flip()
我将上面的代码保存到intro_pygame.py并尝试通过以下方式运行它:
python intro_pygame.py
但是我只能看到一个空的pygame窗口。终端中没有显示错误。
有什么建议吗?