python中的字典操作及字典函数


Posted in Python onJanuary 03, 2018

字典

dict_fruit = {'apple':'苹果','banana':'香蕉','cherry':'樱桃','avocado':'牛油果','watermelon':'西瓜'}

字典的操作

#字典的遍历方式 
#默认遍历(遍历key) 
for value in dict_fruit: 
  print(value) 
''''' 
遍历出的值: 
watermelon 
apple 
cherry 
avocado 
banana 
''' 
#使用key遍历(与默认遍历一样) 
for key in dict_fruit.keys(): 
  print(key) 
''''' 
遍历出的值: 
watermelon 
apple 
cherry 
avocado 
banana 
''' 
#使用value遍历 
for value in dict_fruit.values(): 
  print(value) 
''''' 
遍历出的值: 
苹果 
牛油果 
香蕉 
西瓜 
樱桃 
''' 
#使用key,value遍历 
for key,value in dict_fruit.items(): 
  print(key+'--->'+value) 
''''' 
遍历出的值: 
avocado--->牛油果 
apple--->苹果 
banana--->香蕉 
cherry--->樱桃 
watermelon--->西瓜 
''' 
#创建字典 
#使用dict() 
res = dict(brand = '品牌',size='尺码',color='颜色') 
print(res,type(res)) 
''''' 
res结果: 
{'size': '尺码', 'brand': '品牌', 'color': '颜色'} <class 'dict'> 
''' 
#使用zip()和dict() 
keys = ['1','2','3','4','5'] 
values = [1,2,3,4,5] 
res = dict(zip(keys,values)) 
print(res,type(res)) 
''''' 
res结果: 
{'3': 3, '4': 4, '1': 1, '2': 2, '5': 5} <class 'dict'> 
''' 
#字典的推导式 
res = {k+'的中文是'+v for k,v in dict_fruit.items()} 
print(res) 
''''' 
res结果: 
{'watermelon的中文是西瓜', 'avocado的中文是牛油果', 'banana的中文是香蕉', 'cherry的中文是樱桃', 'apple的中文是苹果'} 
'''

字典的函数

#清空字典 
test1 = {1:'1'} 
test1.clear() 
print(test1) 
''''' 
test1结果: 
{} 
''' 
#复制字典(复制成一个新字典) 
test2 = {2:'2'} 
test2_copy = test2.copy() 
print(test2_copy) 
''''' 
test2结果: 
{2: '2'} 
''' 
#使用指定的key和value制作一个字典 
list_test = ['a','b','c'] 
test3 = {}.fromkeys(list_test,'ojbk') 
print(test3) 
''''' 
test3结果: 
{'a': 'ojbk', 'b': 'ojbk', 'c': 'ojbk'} 
''' 
#将一个字典转化为二级容器(中间容器) 
res = dict_fruit.items() 
print(res,type(res)) 
''''' 
res结果: 
dict_items([('avocado', '牛油果'), ('apple', '苹果'), ('banana', '香蕉'), ('watermelon', '西瓜'), ('cherry', '樱桃')]) <class 'dict_items'> 
''' 
#将字典的key组成新的容器 
res = dict_fruit.keys() 
print(res,type(res)) 
''''' 
res结果: 
dict_keys(['watermelon', 'cherry', 'avocado', 'apple', 'banana']) <class 'dict_keys'> 
''' 
#将字典的value组成新的容器 
res = dict_fruit.values() 
print(res,type(res)) 
''''' 
res结果: 
dict_values(['牛油果', '香蕉', '樱桃', '苹果', '西瓜']) <class 'dict_values'> 
''' 
#根据key删除字典中的数据 
test4 = {1:'1',2:'2',3:'3'} 
test4.pop(2) 
print(test4) 
''''' 
test4结果: 
{1: '1', 3: '3'} 
''' 
#依次弹出(删除)字典中的数据 
test5 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
test5.popitem() 
print(test5) 
test5.popitem() 
print(test5) 
test5.popitem() 
print(test5) 
''''' 
test5依次结果: 
{2: '2', 3: '3', 4: '4', 5: '5'} 
{3: '3', 4: '4', 5: '5'} 
{4: '4', 5: '5'} 
''' 
#更新dict中的数据(更新一个不存在的key时,可用于添加新数据) 
test6 = {'super':'Eric','ssuper':'Cbabe','sssuper':'Gogo','supreme':'wiz333'} 
#更新数据 
test6.update(super='Eric-LPL') 
print(test6) 
#添加数据 
test6.update(niceboy='Bigmao') 
print(test6) 
''''' 
test6依次结果: 
{'ssuper': 'Cbabe', 'supreme': 'wiz333', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} 
{'ssuper': 'Cbabe', 'supreme': 'wiz333', 'niceboy': 'Bigmao', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} 
''' 
#获取dict中的数据(使用key获取) 
test7 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
res = test7.get(1) 
print(res,type(res)) 
''''' 
test7结果: 
1 <class 'str'> 
''' 
#给dict添加数据(setdefault,不能用于更新数据) 
test8 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
test8.setdefault(6,'6') 
print(test8) 
''''' 
test8结果: 
{1: '1', 2: '2', 3: '3', 4: '4', 5: '5', 6: '6'} 
'''

总结

以上所述是小编给大家介绍的python中的字典操作及字典函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Python 相关文章推荐
python 域名分析工具实现代码
Jul 15 Python
在Python的Django框架中加载模版的方法
Jul 16 Python
让python 3支持mysqldb的解决方法
Feb 14 Python
TensorFlow变量管理详解
Mar 10 Python
PyTorch上搭建简单神经网络实现回归和分类的示例
Apr 28 Python
TensorFlow Session会话控制&amp;Variable变量详解
Jul 30 Python
Python3删除排序数组中重复项的方法分析
Jan 31 Python
Python 3.8 新功能全解
Jul 25 Python
Python为何不支持switch语句原理详解
Oct 21 Python
python中的split、rsplit、splitlines用法说明
Oct 23 Python
Pycharm 跳转回之前所在页面的操作
Feb 05 Python
Python3+SQLAlchemy+Sqlite3实现ORM教程
Feb 16 Python
Python将多个excel表格合并为一个表格
Feb 22 #Python
使用Python+Splinter自动刷新抢12306火车票
Jan 03 #Python
Python实现简易Web爬虫详解
Jan 03 #Python
Python读取MRI并显示为灰度图像实例代码
Jan 03 #Python
使用 Python 实现微信公众号粉丝迁移流程
Jan 03 #Python
EM算法的python实现的方法步骤
Jan 02 #Python
Python+树莓派+YOLO打造一款人工智能照相机
Jan 02 #Python
You might like
php知道与问问的采集插件代码
2010/10/12 PHP
CodeIgniter配置之config.php用法实例分析
2016/01/19 PHP
PHP实现转盘抽奖算法分享
2020/04/15 PHP
IE 上下滚动展示模仿Marquee机制
2009/12/20 Javascript
jQuery 创建Dom元素
2010/05/07 Javascript
使用jQuery解决IE与FireFox下createElement方法的差异
2013/11/14 Javascript
jquery submit ie6下失效的原因分析及解决方法
2013/11/15 Javascript
Javascript中3种实现继承的方法和代码实例
2014/08/12 Javascript
表单验证正则表达式实例代码详解
2015/11/09 Javascript
jQuery插件编写步骤详解
2016/06/03 Javascript
基于javascript实现的购物商城商品倒计时实例
2016/12/11 Javascript
js仿淘宝商品放大预览功能
2017/03/15 Javascript
jquery判断滚动条距离顶部的距离方法
2018/09/05 jQuery
关于NodeJS中的循环引用详解
2019/07/23 NodeJs
微信小程序点击按钮动态切换input的disabled禁用/启用状态功能
2020/03/07 Javascript
JS正则表达式常见函数与用法小结
2020/04/13 Javascript
详解JavaScript 作用域
2020/07/14 Javascript
解决vue里a标签值解析变量,跳转页面,前面加默认域名端口的问题
2020/07/22 Javascript
vue 将多个过滤器封装到一个文件中的代码详解
2020/09/05 Javascript
python插入数据到列表的方法
2015/04/30 Python
Python聊天室实例程序分享
2016/01/05 Python
python读取文本绘制动态速度曲线
2018/06/21 Python
python3 中文乱码与默认编码格式设定方法
2018/10/31 Python
Python统计学一数据的概括性度量详解
2020/03/03 Python
Python安装Bs4的多种方法
2020/11/28 Python
Selenium关闭INFO:CONSOLE提示的解决
2020/12/07 Python
荷兰音乐会和音乐剧门票订购网站:Topticketshop
2019/08/27 全球购物
股权转让协议书范本
2014/04/12 职场文书
《学会合作》教学反思
2014/04/12 职场文书
男方婚礼答谢词
2015/01/20 职场文书
奖学金感谢信
2015/01/21 职场文书
社区元宵节活动总结
2015/02/06 职场文书
2015财务年终工作总结范文
2015/05/22 职场文书
教师法制教育培训学习心得体会
2016/01/14 职场文书
《女娲补天》教学反思
2016/02/20 职场文书
Golang中异常处理机制详解
2021/06/08 Golang