python 字典items和iteritems

3.4.6 items和iteritems

  1. 说明:items以列表方式返回字典中的键值对,iteritems以迭代器对象 返回键值对儿(Python3中不再支持);
  2. 例子:
     1:  >>> x
    
     2:  {‘name‘: ‘Bill‘}
    
     3:  >>> x.items()
    
     4:  dict_items([(‘name‘, ‘Bill‘)])
    
     5:  
    
     6:  #python3中不再包含iteritems
    
     7:  >>> x.iteritems()
    
     8:  Traceback (most recent call last):
    
     9:    File "<pyshell#66>", line 1, in <module>
    
    10:      x.iteritems()
    
    11:  AttributeError: ‘dict‘ object has no attribute ‘iteritems‘
    
    12:  
时间: 2024-10-18 09:02:19

python 字典items和iteritems的相关文章

Python 字典items返回列表,iteritems返回迭代器

Python 字典items返回列表,iteritems返回迭代器 字典items()方法和iteritems()方法,是python字典的内建函数,分别会返回Python列表和迭代器,下面一起来看下字典items()和iteritems()的具体操作方法. 作用 python字典的items方法作用:是可以将字典中的所有项,以列表方式返回.如果对字典项的概念不理解,可以查看Python映射类型字典基础知识一文.因为字典是无序的,所以用items方法返回字典的所有项,也是没有顺序的.python

Python 字典 items() 方法

Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(key, value) 元组数组. >>> D = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www. taobao.com'} >>> print(D.items()) dict_items([('Google', 'www.google.com'), ('R

python中items()和iteritems()函数的用法

items函数,将一个字典以列表的形式返回,因为字典是无序的,所以返回的列表也是无序的. a = {'a':1,'b':3} a.items() 返回a = [('a',1),('b',3)] iteritems()返回一个迭代器 b = a.iteritems() list(b) =[('a',1),('b',3)] for k,v in b: print k,v 返回a 1 b 3

Python 字典(Dictionary) items()方法

欢迎关注本人博客:云端筑梦师 描述 Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(键, 值) 元组数组. 语法 Dict.items() 参数 NA 返回值 以列表形式返回可遍历的(键, 值) 元组数组. 实例 示例代码: D = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'} print("字典值 :

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

描述 Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组. 语法 items()方法语法: dict.items() 参数 NA. 返回值 返回可遍历的(键, 值) 元组数组. 实例 以下实例展示了 items()函数的使用方法: #!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.items() 以上实例输出结果为: Value

Python字典高级使用方法汇总

Python字典高级使用方法汇总 字典(dictionary)是python中的一种非常灵活和强大的数据结构,可以完成很多操作.本文总结了一些除了基本的初始化.赋值.取值之外的常用的字典使用方法. 字典基础参考: [1]:http://www.w3cschool.cc/python/python-dictionary.html [2]:http://www.111cn.net/phper/python/56355.htm [3]:http://skyfen.iteye.com/blog/5675

&lt;转&gt;python字典排序 关于sort()、reversed()、sorted()

一.Python的排序 1.reversed() 这个很好理解,reversed英文意思就是:adj. 颠倒的:相反的:(判决等)撤销的 print list(reversed(['dream','a','have','I'])) #['I', 'have', 'a', 'dream'] 2.让人糊涂的sort()与sorted() 在Python 中sorted是内建函数(BIF),而sort()是列表类型的内建函数list.sort(). sorted() sorted(iterable[,

【Python基础学习篇】Python字典

字典(Dictionary)是由"键-值"对组成的集合,字典中的"值"通过"键"来引用. 一.字典的创建 字典由一系列的"键-值"(key-value)对组成,"键-值"对之间用"逗号"隔开,并且被包含在一对花括号中. 创建字典的格式如下: dictionary_name = {key1:value1,key2:value2,...} 如果需要创建一个空的字典,只需要一对花括号即可,如下

python 字典排序 关于sort()、reversed()、sorted()

一.Python的排序 1.reversed() 这个很好理解,reversed英文意思就是:adj. 颠倒的:相反的:(判决等)撤销的 print list(reversed(['dream','a','have','I'])) #['I', 'have', 'a', 'dream'] 2.让人糊涂的sort()与sorted() 在Python 中sorted是内建函数(BIF),而sort()是列表类型的内建函数list.sort(). sorted() sorted(iterable[,