Python 字典操作

Posted Sky_Liao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 字典操作相关的知识,希望对你有一定的参考价值。

字典合并:

技术分享图片
1 >>>a_dict = {sky: asdf, liao: asdf}
2 >>> a_dict
3 {sky: asdf, liao: asdf}
4 >>> b_dict = {xiong: asdf, asky: asdf}
5 >>> b_dict
6 {xiong: asdf, asky: asdf}
7 >>> c_dict = dict(a_dict, **b_dict)
8 >>> c_dict
9 {sky: asdf, liao: asdf, xiong: asdf, asky: asdf}
方法一

 

技术分享图片
 1 >>> a_dict = {sky: asdf, liao: asdf}
 2 >>> a_dict
 3 {sky: asdf, liao: asdf}
 4 >>> b_dict = {xiong: asdf, asky: asdf}
 5 >>> b_dict
 6 {xiong: asdf, asky: asdf}
 7 >>> c_dict = a_dict.copy()
 8 >>> c_dict.update(b_dict)
 9 >>> c_dict
10 {sky: asdf, liao: asdf, xiong: asdf, asky: asdf}
11 >>>
方法二

 

以上是关于Python 字典操作的主要内容,如果未能解决你的问题,请参考以下文章

Python snippet(代码片段)

Python代码阅读(第26篇):将列表映射成字典

Python代码阅读(第40篇):通过两个列表生成字典

Solr、sunburnt (python) 和高亮显示:操作方法?

python之字典操作

Python小数据池和字典操作