gpt4 book ai didi

Python 3,解析json

转载 作者:行者123 更新时间:2023-11-28 16:42:27 25 4
gpt4 key购买 nike

请帮忙,我收到这个错误:

with open('Data/language.json') as settings_file:
TypeError: Required argument 'flags' (pos 2) not found

我的代码是:

import json

with open('Data/settings.json') as settings_file:
Settings = json.load(settings_file)

最佳答案

看起来您从 os 模块导入了 open,其中包含类似以下内容:

from os import open

os.open 与内置的 open 函数(您不需要导入)不同。删除该导入,您将使用内置的 open,它默认为阅读模式。

关于Python 3,解析json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17536697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com