1
4.2.9Python下字典的items方法
Posted by 撒得一地 on 2016年2月18日 in python教程
items()方法语法:
dict.items()
描述
Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。
items方法将所有的字典项以列表方式返回,这些列表项中的每一项都来自于(键,值)。但是项在返回时并没有特殊的顺序。
items方法不用传任何参数,具体实例:
>>> d = {'url':'coderschool.cn','title':'psz'} >>> d.items() dict_items([('title', 'psz'), ('url', 'coderschool.cn')])
1 Comment
不错好方法