编程语言
首页 > 编程语言> > 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,list,China,print,dict,字典
来源: https://www.cnblogs.com/chkplusplus/p/15980658.html