Python中字典有关的常见函数的使用是怎样的

Admin 2022-08-10 群英技术资讯 286 次浏览

这篇文章给大家分享的是Python中字典有关的常见函数的使用是怎样的。小编觉得挺实用的,因此分享给大家做个参考,文中的介绍得很详细,而要易于理解和学习,有需要的朋友可以参考,接下来就跟随小编一起了解看看吧。


字典中元素的个数计算

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
性别 男


以上就是关于“Python中字典有关的常见函数的使用是怎样的”的介绍了,感谢各位的阅读,希望这篇文章能帮助大家解决问题。如果想要了解更多知识,欢迎关注群英网络,小编每天都会为大家更新不同的知识。 群英智防CDN,智能加速解决方案
标签: Python 字典

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。

猜你喜欢

成为群英会员,开启智能安全云计算之旅

立即注册
专业资深工程师驻守
7X24小时快速响应
一站式无忧技术支持
免费备案服务
免费拨打  400-678-4567
免费拨打  400-678-4567 免费拨打 400-678-4567 或 0668-2555555
在线客服
微信公众号
返回顶部
返回顶部 返回顶部
在线客服
在线客服