gpt4 book ai didi

python - 如何在 python/json 中的输入数据之间插入数据?

转载 作者:行者123 更新时间:2023-12-01 06:38:04 29 4
gpt4 key购买 nike

我有输入 ab,我想将它们插入到我的 json 文件中。

import json

with open("intents_kor.json") as file:
data = json.load(file)

a = input('input a : ')
b = input('input b : ')

data['intents'].append({'tag': 'not_in_json', 'patterns': ['a'], 'responses': ['b'], 'context_set': ''})

我想用 append() 将我的输入 ab 放入 ab )
我怎样才能做到这一点?

最佳答案

解决方案如下:

import json

with open("intents_kor.json") as file:
data = json.load(file)

a = input('input a : ')
b = input('input b : ')

data['intents']={'tag': 'not_in_json', 'patterns': [a], 'responses': [b], 'context_set': ''}
print(data)

关于python - 如何在 python/json 中的输入数据之间插入数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59574221/

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