Python教程

python items()

本文主要是介绍python items(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

是python中字典类的方法。
对一个字典调用items()方法:

d = {'country':'China', 'age': '18', 'name': 'Kang'} 
print(d.items())
print(type(d.items()))
print(isinstance(d.items(), list))

输出为:

dict_items([('country', 'China'), ('age', '18'), ('name', 'Kang')])
<class 'dict_items'>
False

可见items()方法将字典d中的键值对组成一个个的元组,然后放入一个类似列表的数据结构中。具体地,是dict_items类,看其形式就是一个元组列表,只是对list类做了一定的封装,不是原始的list。

这篇关于python items()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!