Python中字典有关的常见函数的使用是怎样的
Admin 2022-08-10 群英技术资讯 456 次浏览
len(字典名)
举例:
person={"姓名":"张三","年龄":20,"性别":"男"} print(len(person))
输出:
3
字典名.keys()
举例:
person={"姓名":"张三","年龄":20,"性别":"男"} print(person.keys()) persons=person.keys() print(type(persons))
输出:
dict_keys(['姓名', '年龄', '性别'])
<class 'dict_keys'>
字典名.values()
举例:
person={"姓名":"张三","年龄":20,"性别":"男"} print(person.values()) persons=person.values() print(type(persons))
输出:
dict_values(['张三', 20, '男'])
<class 'dict_values'>
字典名.items()
person={"姓名":"张三","年龄":20,"性别":"男"} print(person.items()) persons=person.items() print(type(persons))
输出:
dict_items([('姓名', '张三'), ('年龄', 20), ('性别', '男')])
<class 'dict_items'>
键名,键值,键名对应键值的遍历。
举例:
person={"姓名":"张三","年龄":20,"性别":"男"} persons_1=person.keys() persons_2=person.values() persons_3=person.items() for a in persons_1://键名的遍历 print(a,end=' ') print("\n") for b in persons_2://键值的遍历 print(b,end=' ') print("\n") for c in persons_3://键名与对应的键值的遍历 print(c,end=' ')
输出:
姓名 年龄 性别
张三 20 男
('姓名', '张三') ('年龄', 20) ('性别', '男')
person={"姓名":"张三","年龄":20,"性别":"男"} for keys in person.keys()://键名的遍历 print(keys,end=' ') print("\n") for values in person.values()://键值的遍历 print(values,end=' ') print("\n") for key,values in person.items()://键名与对应的键值的遍历 print(key,values)
输出:
姓名 年龄 性别
张三 20 男
姓名 张三
年龄 20
性别 男
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
不管你是做数据分析,还是网络爬虫,Web 开发、亦或是机器学习,你都离不开要和数据库打交道,而 MySQL 又是最流行的一种数据库,这篇文
这篇文章主要为大家介绍了python基础中的文件对象,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助<BR>
利用(面向)对象的(属性和方法)去进行编码的过程即面向对象编程。本文将通过示例详细为大家介绍一下Python中的面向对象编程,需要的可以参考一下
Matplotlib是Python的绘图库,它能让使用者很轻松地将数据图形化,并且提供多样化的输出格式。本文将为大家介绍如何用matplotlib绘制饼图和堆叠图,感兴趣的朋友可以学习一下
当初学 Python 时,想要弄懂 Python 的错误信息的含义可能有点复杂。这里列出了常见的的一些让你程序 crash 的运行时错误。1)忘记在...
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008