百木园-与人分享,
就是让自己快乐。

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。


来源:https://www.cnblogs.com/chkplusplus/p/15980658.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » python items()

相关推荐

  • 暂无文章