Python之路11-字典
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之路11-字典相关的知识,希望对你有一定的参考价值。
info = { ‘stu01‘:‘Tom‘, ‘stu02‘:‘Jack‘, ‘stu03‘:‘Ben‘ } #创建 #info[‘stu04‘] = ‘petter‘ #修改 #info[‘stu01‘] = ‘汤姆‘ #删除 #del info[‘stu01‘] #info.pop(‘stu02‘) #随机删 #info.popitem() #查询 #print (info[‘stu01‘]) #print (‘stu01‘ in info) #取字典的value #print (info.values()) #清空字典 #info.clear() #复制字典 #info2 = info.copy() #初始化一个字典 #print (info.fromkeys([‘stu04‘,‘stu05‘],‘look‘)) #取某个key的值 #print (info.get(‘stu01‘)) #key-value元祖所有添加到列表中 #print (info.items()) #取字典的key #print (info.keys()) #查找key如果不存在使用默认值 #print (info.setdefault(‘stu04‘,‘Jane‘)) #将一个字典添加到另一个字典中 #info2 = {‘name‘:‘jiachen‘} #info.update(info2) #print (info)
本文出自 “八英里” 博客,请务必保留此出处http://5921271.blog.51cto.com/5911271/1896744
以上是关于Python之路11-字典的主要内容,如果未能解决你的问题,请参考以下文章