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中字典及遍历常用函数的使用详解的文章就介绍到这了,更多相关Python字典遍历内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
OpenCV 使用imread()函数读取图片的六种正确姿势
这篇文章主要介绍了OpenCV 使用imread()函数读取图片的六种正确姿势,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07浅谈Python中range与Numpy中arange的比较
这篇文章主要介绍了浅谈Python中range与Numpy中arange的比较,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-03-03解决Python 命令行执行脚本时,提示导入的包找不到的问题
今天小编就为大家分享一篇解决Python 命令行执行脚本时,提示导入的包找不到的问题,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧2019-01-01PyTorch并行训练DistributedDataParallel完整demo
这篇文章主要为大家介绍了PyTorch并行训练DistributedDataParallel完整demo,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-06-06
最新评论