如何将值附加到 dict 键?(属性错误:'str' 对象没有属性 'append') [英] How do I append a value to dict key? (AttributeError: 'str' object has no attribute 'append')

查看:27
本文介绍了如何将值附加到 dict 键?(属性错误:'str' 对象没有属性 'append')的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个带有一个键(和一个值)的字典:

dict = {'key': '500'}.

现在我想向同一个键添加一个新值 '1000'.然而,

dict[key].append('1000')

只给我 "AttributeError: 'str' object has no attribute 'append'".

如果我这样做

dict[key] = '1000'

它替换了之前的值.

我猜我必须创建一个列表作为值,并以某种方式将该列表附加为键的值,但我不确定我将如何处理.感谢您的帮助!

解决方案

我建议使用 defaultdict 在缺少键时实例化一个空列表.

<预><代码>>>>从集合导入 defaultdict>>>d = defaultdict(列表)>>>d['key'].append(500)>>>ddefaultdict(, {'key': [500]})>>>d['key'].append(1000)>>>ddefaultdict(, {'key': [500, 1000]})

我不建议将字符串/整数作为值,然后在想要附加到字段时切换到列表.保持一致.

Say I have a dictionary with one key (and a value):

dict = {'key': '500'}.

Now I want to add a new value '1000' to the same key. However,

dict[key].append('1000')

just gives me "AttributeError: 'str' object has no attribute 'append'".

If I do

dict[key] = '1000' 

it replaces the previous value.

I'm guessing I have to create a list as a value and somehow append that list as the key's value but I'm not sure how I would go about this. Thanks for any help!

解决方案

I suggest the usage of a defaultdict that instantiates an empty list when a key is missing.

>>> from collections import defaultdict
>>> d = defaultdict(list)
>>> d['key'].append(500)
>>> d
defaultdict(<type 'list'>, {'key': [500]})
>>> d['key'].append(1000)
>>> d
defaultdict(<type 'list'>, {'key': [500, 1000]})

I don't recommend having strings/integers as values and then switching to lists once you want to append to a field. Keep it consistent.

这篇关于如何将值附加到 dict 键?(属性错误:'str' 对象没有属性 'append')的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆