侯体宗的博客
  • 首页
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

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

Python  /  管理员 发布于 7年前   271

字典

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将多个excel文件合并为一个文件
    下一条:
    Python将多个excel表格合并为一个表格
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在windows10中升级go版本至1.24后LiteIDE的Ctrl+左击无法跳转问题解决方案(0个评论)
    • 智能合约Solidity学习CryptoZombie第四课:僵尸作战系统(0个评论)
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(95个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客