如何从 Python 中的主目录读取数据

How to read data from home directory in Python

我正在尝试从 json 文件中 read/get 数据。此 json 文件存储在项目 > 请求 > request1.json 中。在脚本中,我试图从 json 文件中读取数据,但失败得很厉害。这是我试图用来以读取模式打开文件的代码。

正在尝试替换(在 windows 中)

  f = open('D:\Test\projectname\RequestJson\request1.json', 'r') with 

  f = open(os.path.expanduser('~user') + "Requests/request1.json", 'r')

如有任何帮助,我们将不胜感激。

使用当前目录路径(假设在项目中)并附加剩余的静态文件路径:

import os
current_dir = os.path.abspath(os.getcwd())

path = current_dir + "/RequestJson/request1.json"

with open(path, 'r') as f:
    f.write(data)