Python 十个字典用法使用技巧归纳

Python 十个字典用法使用技巧归纳

目录

1.dict.clear()

2.dict.copy()

3.dict.fromkeys()

4.dict.get()

5.dict.items()

6.dict.keys()

7.dict.pop()

8.dict.popitem()

9.dict.setdefault()

10.dict.update(dict1)

11.dict.values()

大家好,本期给大家带来Python字典11个方法的全面解析,希望对你有所帮助。

字典(Dictionary)是Python提供的一种常用的数据结构,它用于存放具有映射关系的数据,由键(key)和值(value)成对组成,键和值中间以冒号:隔开,项之间用逗号隔开,整个字典由大括号{}括起来,格式如下:

dic = {key1 : value1, key2 : value2 }

字典也被称作关联数组或哈希表,下面是几种常见的字典创建方式:

# 方法1 dic1 = { 'Author' : 'Python' , 'age' : 99 , 'sex' : '男' } # 方法2 lst = [('Author', 'Python'), ('age', 99), ('sex', '男')] dic2 = dict(lst) # 方法3 dic3 = dict( Author = 'Python', age = 99, sex = '男') # 方法4 list1 = ['Author', 'age', 'sex'] list2 = ['Python', 99, '男'] dic4 = dict(zip(list1, list2))

字典创建的方式还有很多种,这里不再赘述。

字典由 dict 类代表,可以使用 dir(dict) 来查看该类包含哪些方法,输入命令,可以看到如下输出结果:

print('methods = ',methods) methods = ['__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values']

字典的方法和属性有很多种,这里我们重点介绍以下11种方法:

['clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values'] 1.dict.clear()

clear() 用于清空字典中所有元素(键-值对),对一个字典执行 clear() 方法之后,该字典就会变成一个空字典:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', 99, '男'] dic1 = dict(zip(list1, list2)) # dic1 = {'Author': 'Python', 'age': 99, 'sex': '男'} dic1.clear() # dic1 = {} 2.dict.copy()

copy() 用于返回一个字典的浅拷贝:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', 99, '男'] dic1 = dict(zip(list1, list2)) dic2 = dic1 # 浅拷贝: 引用对象 dic3 = dic1.copy() # 浅拷贝:深拷贝父对象(一级目录),子对象(二级目录)不拷贝,还是引用 dic1['age'] = 18 # dic1 = {'Author': 'Python', 'age': 18, 'sex': '男'} # dic2 = {'Author': 'Python', 'age': 18, 'sex': '男'} # dic3 = {'Author': 'Python', 'age': 99, 'sex': '男'}

其中 dic2 是 dic1 的引用,所以输出结果是一致的,dic3 父对象进行了深拷贝,不会随dic1 修改而修改,子对象是浅拷贝所以随 dic1 的修改而修改,注意父子关系。

拓展深拷贝:copy.deepcopy()

import copy list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) dic2 = dic1 dic3 = dic1.copy() dic4 = copy.deepcopy(dic1) dic1['age'].remove(18) dic1['age'] = 20 # dic1 = {'Author': 'Python', 'age': 20, 'sex': '男'} # dic2 = {'Author': 'Python', 'age': 20, 'sex': '男'} # dic3 = {'Author': 'Python', 'age': [99], 'sex': '男'} # dic4 = {'Author': 'Python', 'age': [18, 99], 'sex': '男'}

dic2 是 dic1 的引用,所以输出结果是一致的;dic3 父对象进行了深拷贝,不会随dic1 修改而修改,子对象是浅拷贝所以随 dic1 的修改而修改;dic4 进行了深拷贝,递归拷贝所有数据,相当于完全在另外内存中新建原字典,所以修改dic1不会影响dic4的数据

3.dict.fromkeys()

fromkeys() 使用给定的多个键创建一个新字典,值默认都是 None,也可以传入一个参数作为默认的值:

list1 = ['Author', 'age', 'sex'] dic1 = dict.fromkeys(list1) dic2 = dict.fromkeys(list1, 'Python') # dic1 = {'Author': None, 'age': None, 'sex': None} # dic2 = {'Author': 'Python', 'age': 'Python', 'sex': 'Python'} 4.dict.get()

get() 用于返回指定键的值,也就是根据键来获取值,在键不存在的情况下,返回 None,也可以指定返回值:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) Author = dic1.get('Author') # Author = Python phone = dic1.get('phone') # phone = None phone = dic1.get('phone','12345678') # phone = 12345678 5.dict.items()

items() 获取字典中的所有键-值对,一般情况下可以将结果转化为列表再进行后续处理:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) items = dic1.items() print('items = ', items) print(type(items)) print('items = ', list(items)) # items = dict_items([('Author', 'Python'), ('age', [18, 99]), ('sex', '男')]) # <class 'dict_items'> # items = [('Author', 'Python'), ('age', [18, 99]), ('sex', '男')] 6.dict.keys()

keys() 返回一个字典所有的键:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) keys = dic1.keys() print('keys = ', keys) print(type(keys)) print('keys = ', list(keys)) # keys = dict_keys(['Author', 'age', 'sex']) # <class 'dict_keys'> # keys = ['Author', 'age', 'sex'] 7.dict.pop()

pop() 返回指定键对应的值,并在原字典中删除这个键-值对:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) sex = dic1.pop('sex') print('sex = ', sex) print('dic1 = ',dic1) # sex = 男 # dic1 = {'Author': 'Python', 'age': [18, 99]} 8.dict.popitem()

popitem() 删除字典中的最后一对键和值:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) dic1.popitem() print('dic1 = ',dic1) # dic1 = {'Author': 'Python', 'age': [18, 99]} 9.dict.setdefault()

setdefault() 和 get() 类似, 但如果键不存在于字典中,将会添加键并将值设为default:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) dic1.setdefault('Author', '') print('dic1 = ',dic1) # dic1 = {'Author': 'Python', 'age': [18, 99], 'sex': '男'} dic1.setdefault('name', '') print('dic1 = ',dic1) # dic1 = {'Author': 'Python', 'age': [18, 99], 'sex': '男', 'name': ''} 10.dict.update(dict1)

update() 字典更新,将字典dict1的键-值对更新到dict里,如果被更新的字典中己包含对应的键-值对,那么原键-值对会被覆盖,如果被更新的字典中不包含对应的键-值对,则添加该键-值对:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) print('dic1 = ',dic1) # dic1 = {'Author': 'Python', 'age': [18, 99], 'sex': '男'} list3 = ['Author', 'phone' ] list4 = ['', 12345678] dic2 = dict(zip(list3, list4)) print('dic2 = ',dic2) # dic2 = {'Author': '', 'phone': 12345678} dic1.update(dic2) print('dic1 = ',dic1) # dic1 = {'Author': '', 'age': [18, 99], 'sex': '男', 'phone': 12345678} 11.dict.values()

values() 返回一个字典所有的值:

list1 = ['Author', 'age', 'sex'] list2 = ['Python', [18,99], '男'] dic1 = dict(zip(list1, list2)) values = dic1.values() print('values = ', values) print(type(values)) print('values = ', list(values)) # values = dict_values(['Python', [18, 99], '男']) # <class 'dict_values'> # values = ['Python', [18, 99], '男']

到此这篇关于Python 十个字典用法使用技巧归纳的文章就介绍到这了,更多相关Python 字典内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读

    IE脚本错误如何做Web脚本错误解决技巧

    IE脚本错误如何做Web脚本错误解决技巧,,这个问题是由于这样的事实,对网页的HTML源代码和客户端脚本不正确的工作,如微软Jscript或Visual Basic脚本

    单反设置技巧|单反怎么调节

    单反设置技巧|单反怎么调节,,1. 单反怎么调节佳能相机全自动档指的是AUTO档(傻瓜模式),就是所有的摄影参数都由相机自动调整,用户只需要按下快

    lol瞎子快捷键|英雄联盟瞎子玩法技巧

    lol瞎子快捷键|英雄联盟瞎子玩法技巧,,英雄联盟瞎子玩法技巧有读取。要玩好必须知道盲僧玩法连招方式,我简单介绍几种常用的:1. QAAQ打出的

    求和快捷键技巧|求和的快捷方式

    求和快捷键技巧|求和的快捷方式,,求和的快捷方式方法一:快捷键alt+=快速输入求和公式进行求和操作技巧:1、鼠标先选择我们需要求和的单元格

    Word打印技术字使用技巧

    Word打印技术字使用技巧,,如果要打印文件,则没有打印机,打印机的计算机不安装Word。应该怎么做这里的文字由萧边编写的印刷技术。我希望你能

    保持笔记本电脑的一些知识和技巧

    保持笔记本电脑的一些知识和技巧,,笔记本的价格比前些年便宜很多,但和其他电脑相比还是贵的,所以我们在使用笔记本时一定要注意它的维护。下

    Python之可迭代对象、迭代器、生成器

    Python之可迭代对象、迭代器、生成器,迭代,生成器,一、概念描述可迭代对象就是可以迭代的对象,我们可以通过内置的iter函数获取其迭代器,可

    DIY也有计算电脑安装7原则的技巧。

    DIY也有计算电脑安装7原则的技巧。,,首先我们纠正一个概念,很多人会说是不兼容的DIY真的没有技术含量。现在我要告诉你,cuanji不等于DIY,这不

    超级书如何超这种购买技巧

    超级书如何超这种购买技巧,,最近,有些朋友说他们想买笔记本,不知道该怎么办超级书而且似乎听说超级大自然不是很好,是这样吗你能告诉我超级本