无法将图像添加到 pygame
Cant add images to pygame
我尝试制作一个简单的游戏,但每次尝试 运行 代码时,我都会在图像位置出现错误。 Python 找不到。我尝试将图像放在桌面上,甚至使用 "import os"
,但都不起作用。
如何让 Python 识别正确的文件路径和 运行 以下代码:
walkRight = [pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R1")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R2")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R3")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R4"))]
在这种情况下不要使用 os.chdir
。它将当前工作目录更改为给定路径。您可以使用 os.path.normpath
to normalize the path. You can also check for debug purposes if the file actually exists with os.path.isfile
.
我尝试制作一个简单的游戏,但每次尝试 运行 代码时,我都会在图像位置出现错误。 Python 找不到。我尝试将图像放在桌面上,甚至使用 "import os"
,但都不起作用。
如何让 Python 识别正确的文件路径和 运行 以下代码:
walkRight = [pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R1")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R2")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R3")),
pygame.image.load(os.chdir("C:\Users\Anas\Desktop\Game\R4"))]
在这种情况下不要使用 os.chdir
。它将当前工作目录更改为给定路径。您可以使用 os.path.normpath
to normalize the path. You can also check for debug purposes if the file actually exists with os.path.isfile
.