【问题标题】:Annoying error: pygame.error: video system not initialized [duplicate]烦人的错误:pygame.error:视频系统未初始化[重复]
【发布时间】:2021-12-31 15:26:35
【问题描述】:

我最近开始使用 Pygame,但遇到了这个错误,似乎找不到发生这种情况的原因。

我的代码:

import pygame
pygame.init()
screen = pygame.display.set_mode((400,500))
done = False
while not done:
    for event in pygame.event.get():
        if event.type == pygame.quit():
            done = True
    pygame.display.flip()

我得到的错误:

pygame.error: video system not initialized

【问题讨论】:

    标签: python pygame


    【解决方案1】:

    你写了一个小错误pygame.QUIT 而不是pygame.quit()。这会导致 pygame 退出,所以这个错误是有道理的。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多