如何将值附加到 dict 键?(AttributeError:'str'对象没有属性'append')

How do I append a value to dict key? (AttributeError: #39;str#39; object has no attribute #39;append#39;)(如何将值附加到 dict 键?(AttributeError:str对象没有属性append))
本文介绍了如何将值附加到 dict 键?(AttributeError:'str'对象没有属性'append')的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

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

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

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

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

dict[key].append('1000')

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

如果我这样做了

dict[key] = '1000' 

它替换了之前的值.

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

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!

推荐答案

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

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 键?(AttributeError:'str'对象没有属性'append')的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)