为什么我的pygame程序不会显示我的图像

时间:2014-05-24 03:26:27

标签: python image pygame blit

import pygame
from pygame.locals import *
pygame.init()
width, height = 640, 480
screen=pygame.display.set_mode((width, height),0,32)
player=pygame.image.load("cat.png")

while True:
    screen.fill(0,255,0)
    screen.blit(player,(100,100))
    pygame.display.flip
    for event in pygame.event.get():
        if event.type==pygame.QUIT:
            pygame.quit
            exit(0)

这拒绝显示我的猫图片,并且shell中没有错误。我很抱歉,如果我犯了一个愚蠢的错误,但我对这个网站和python都很新。

1 个答案:

答案 0 :(得分:2)

pygame.display.flip

应该是:

pygame.display.flip()

        pygame.quit

应该是:

        pygame.quit()

如果没有括号,您就不会调用函数。