描述:

Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。

语法:

dict.items()

返回值:

返回可遍历的(键, 值) 元组数组。

实例:

以下代码展示了items()函数的使用方法

  1. #!/usr/bin/python
  2. # coding=utf-8
  3. dict = { 'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'}
  4. #print ("字典值 : %s" % dict.items())
  5. print( "字典值 :",dict.items())
  6. # 遍历字典列表
  7. for key,values in dict.items():
  8. print(key,values)

result:

  1. 字典值 : dict_items([( 'Google', 'www.google.com'), ( 'Runoob', 'www.runoob.com'), ( 'taobao', 'www.taobao.com')])
  2. Google www.google.com
  3. taobao www.taobao.com
  4. Runoob www.runoob.com

 

注:
Python中 dict.items() dict.iteritems()区别

Python 文档解释:

  • dict.items(): Return a copy of the dictionary’s list of (key, value) pairs.
  • dict.iteritems(): Return an iterator over the dictionary’s (key, value) pairs.
dict.items()返回的是一个完整的列表,而dict.iteritems()返回的是一个生成器(迭代器)。
dict.items()返回列表list的所有列表项,形如这样的二元组list:[(key,value),(key,value),...], dict.iteritems()是generator, yield 2-tuple。相对来说,前者需要花费更多内存空间和时间,但访问某一项的时间较快(KEY)。后者花费很少的空间,通过next()不断取下一个值,但是将花费稍微多的时间来生成下一item。