不确定我做错了什么,我正在学习如何使用 Python 和 PyGame 制作游戏的教程,但出现错误:
pygame.error: Couldn't open resources/images/dude.png
Run Code Online (Sandbox Code Playgroud)
我的代码如下:
import pygame
from pygame.locals import *
pygame.init()
width, height = 640, 480
screen=pygame.display.set_mode((width,height))
player = pygame.image.load("resources/images/dude.png")
while 1:
screen.fill(0)
screen.blit(player, (100,100))
pygame.display.flip()
for event in pygame.event.get():
if event.type==pygame.QUIT:
pygame.quit()
exit(0)
Run Code Online (Sandbox Code Playgroud)
完整的错误信息是:
ALSA lib confmisc.c:768:(parse_card) cannot find card '0'
ALSA lib conf.c:4292:(_snd_config_evaluate) function
snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4292:(_snd_config_evaluate) function snd_func_concat
returned error: No such file or directory
ALSA lib …Run Code Online (Sandbox Code Playgroud)