为什么我的默认python目录是System32,而不是C:\Users\Name

问题描述 投票:0回答:1

我目前正在尝试使用 Pygame 加载图像,并且我已经下载了该图像。默认情况下,我将图像下载到我的 C:\Users\User\Downloads 目录。

我准确地把它放进去:

Player = pygame.image
Player.load("default-farmer-portraits-v0-zobeasjtx61a1.png")

它想出了这个:

Traceback (most recent call last):
  File "<pyshell#140>", line 1, in <module>
    Player.load("default-farmer-portraits-v0-zobeasjtx61a1.png")
FileNotFoundError: No file 'default-farmer-portraits-v0-zobeasjtx61a1.png' found in working directory 'C:\WINDOWS\system32'.
python pygame
1个回答
0
投票

您可以访问computerhope.com/jargon/c/currentd.htm这个网站了解更多信息。在启动Python之前,您可以尝试使用“cd”命令更改目录。 至于为什么这个目录设置为“C:WINDOWSsystem32”而不是“C:UsersYourUserName”,这是Windows系统本身的情况,不是编程问题。

© www.soinside.com 2019 - 2024. All rights reserved.