码迷,mamicode.com
首页 > 编程语言 > 详细

python学习之items()

时间:2017-10-14 18:19:46      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:leo   mic   遍历   strong   style   sof   pytho   python学习   print   

定义

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

语法

dict.items()

说明:没有参数。

返回值

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

例子

>>> d = {‘name‘:‘leo‘,‘age‘:18,}
>>> for i in d.items():
...   print(i)
...
(‘name‘, ‘leo‘)
(‘age‘, 18)
>>> for x,y in d.items():
...   print(x,y)
...
name leo
age 18

  

 

python学习之items()

标签:leo   mic   遍历   strong   style   sof   pytho   python学习   print   

原文地址:http://www.cnblogs.com/leomei91/p/7667723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!