所以,这是我的代码,我是通过观看教程来正常编码的,但是当我使用填充属性时,突然出现一个错误,提示如下:
第 15 行,在 display.fill((25, 25, 29)) AttributeError: 'NoneType' object has no attribute 'fill'
下面是我写的代码,如果有人愿意帮助我,我会很高兴!
下面是我的代码
import pygame
pygame.init()
pygame.display.set_mode((800, 600))
display = pygame.display.set_caption("Space Invaders!")
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
display.fill((25, 25, 29))
pygame.display.update()