相关文章推荐
叛逆的沙发  ·  Convert data ...·  1 周前    · 
沉稳的木瓜  ·  Python_PyCharm_Turtle- ...·  4 天前    · 
严肃的火锅  ·  unicodedata.normalize在 ...·  1 年前    · 
逼格高的投影仪  ·  Android ...·  1 年前    · 
很酷的橡皮擦  ·  react ...·  1 年前    · 

python 文件路径有空格

在 Python 中,如果文件路径包含空格,需要使用引号将其包围起来,例如:

file_path = "C:/My Documents/example.txt"
with open(file_path) as f:
   contents = f.read()

或者使用 raw string 表示法:

file_path = r"C:/My Documents/example.txt"
with open(file_path) as f:
   contents = f.read()

注意,对于不同的操作系统,文件路径分隔符也不同(Windows 为 \,其他操作系统为 /)。

  •