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 为 \,其他操作系统为 /)。

  •