在同一目录中打开文件

时间:2017-04-27 08:39:10

标签: json python-3.x file

我的__init__.py包中有Database个文件,我想从同一目录中的配置文件(config.json)中读取一些信息。

我试过这段代码:

with open("config.json", 'r') as json_data:
    data = json.load(json_data)
print(data)

但我收到了这个错误:

FileNotFoundError: [Errno 2] No such file or directory: 'config.json'

错误在哪里?

0 个答案:

没有答案