gpt4 book ai didi

python - 将值添加到 Python 字典中的特定键

转载 作者:行者123 更新时间:2023-12-04 07:34:32 25 4
gpt4 key购买 nike

我是 Python 的新手。我正在学习字典。我想在现有字典中插入一个新值。
现有字典是 d={5:'acb',6:'bhg',7:'cssd'}。
我想在键 5 处添加一个新值“xsd”,但我无法这样做。
我已经从我身边尝试了以下内容。请帮忙。

d={5:'acb',6:'bhg',7:'cssd'}
d[5].append('xsd')
d
我想输出为;
d={5:['acb','xsd'],6:'bhg',7:'cssd'}

最佳答案

你可以试试这个:

d = {5: 'acb', 6: 'bhg', 7: 'cssd'}
if type(d[5]) is list:
d[5].append('xsd')
else:
tmp = []
tmp.append(d[5])
tmp.append('xsd')
d[5] = tmp

关于python - 将值添加到 Python 字典中的特定键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67799632/

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