Python--字典的一些用法
Posted wangyanyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python--字典的一些用法相关的知识,希望对你有一定的参考价值。
1.dict.items()
例子1:
以列表返回可遍历的(键, 值) 元组数组。
dict = ‘Name‘: ‘Runoob‘, ‘Age‘: 7 print ("Value : %s" % dict.items())
返回结果:
Value : dict_items([(‘Age‘, 7), (‘Name‘, ‘Runoob‘)])
例子2:遍历
dict = ‘Name‘: ‘Runoob‘, ‘Age‘: 7 for i,j in dict.items(): print(i, ":\t", j)
返回结果:
Name : Runoob
Age : 7
例子3:将字典的 key 和 value 组成一个新的列表:
d=1:"a",2:"b",3:"c" result=[] for k,v in d.items(): result.append(k) result.append(v) print(result)
返回结果:
[1, ‘a‘, 2, ‘b‘, 3, ‘c‘]
2.
以上是关于Python--字典的一些用法的主要内容,如果未能解决你的问题,请参考以下文章