gpt4 book ai didi

python - 为什么 python pygame 不能在spyder 中工作?

转载 作者:太空宇宙 更新时间:2023-11-03 21:10:48 25 4
gpt4 key购买 nike

我最近在我的学校电脑上下载了 pygame(我以前有过使用经验),但是当我尝试打开一个窗口时,它不起作用并且是黑色的,即使我在代码中为窗口着色。

我什至复制了这段代码:

import pygame
background_colour = (255,255,255)
(width, height) = (300, 200)
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Tutorial 1')
screen.fill(background_colour)
pygame.display.flip()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False

但它做同样的事情。

额外:

我使用 Spyder 和 python 3.6

提前致谢:)

最佳答案

你的代码可以在我的Mac上运行。如果您使用的是 Windows,请尝试重新启动 PC。另外,尝试从命令行执行您的示例。

关于python - 为什么 python pygame 不能在spyder 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55080479/

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