gpt4 book ai didi

python - 游戏错误 : Video System not Initialized

转载 作者:太空狗 更新时间:2023-10-29 17:30:55 24 4
gpt4 key购买 nike

<分区>

我之前使用过 Pygame 和 python 2.7,但最近我“升级”到 python 3.2。我下载并安装了最新版本的 Pygame,据说它可以与这个版本的 python 一起使用。然而,我在什么应该是一个简单的代码块上遇到了这个相当令人沮丧的错误。代码是:

import pygame, random

title = "Hello!"
width = 640
height = 400
pygame.init()
screen = pygame.display.set_mode((width, height))
running = True
clock = pygame.time.Clock()
pygame.display.set_caption(title)

running = True

while running:
for event in pygame.event.get():
if event.type == pygame.quit():
running = False
else:
print(event.type)
clock.tick(240)
pygame.quit()

每次我运行它我都会得到:

17
1
4
Traceback (most recent call last):
File "C:/Users/David/Desktop/hjdfhksdf.py", line 15, in <module>
for event in pygame.event.get():
pygame.error: video system not initialized

为什么会出现此错误?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com