окно pygame закрывается сразу после открытия

#python #pygame

#python #pygame

Вопрос:

 import pygame
#initialize the screen
pygame.init()

#create the screen
screen = pygame.display.set_mode((80, 600))

#tile and icon
pygame.display.set_caption("Space Invaders")
icon = pygame.image.load("spaceship.png")
pygame.display.set_icon(icon)

running = True
while running:
    for event in pygame.event.get():
        if event.type == pygame.quit():
            running = False
  

мое окно pygame закрывается, как только оно открывается, а затем в нем отображается ошибка pygame.ошибка: видеосистема не инициализирована. я использую версию Visual Studio 2019 для сообщества.

Ответ №1:

pygame.quit() вызывает метод quit и неинициализирует все модули pygame. Вы должны оценить, равен ли атрибут типа события константе pygame.QUIT (см. pygame.event ):

if event.type == pygame.quit():

 if event.type == pygame.QUIT: