Python 字典 Dictionary items()方法
Python 字典 Dictionary items()方法
Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。
语法
items()方法语法:
dict.items()
参数
- NA。
返回值
返回可遍历的(键, 值) 元组数组。
实例
以下实例展示了 items()函数的使用方法:
#!/usr/bin/python # coding=utf-8 dict = {'Google': 'www.google.com', 'codebaoku': 'www.codebaoku.com', 'taobao': 'www.taobao.com'} print "字典值 : %s" % dict.items() # 遍历字典列表 for key,values in dict.items(): print key,values
以上实例输出结果为:
字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('codebaoku', 'www.codebaoku.com')] Google www.google.com taobao www.taobao.com codebaoku www.codebaoku.com
相关文章
- Python 变量类型
- Python 条件语句
- Python Number 数字
- Python 字典 Dictionary
- Python 网络编程
- Python 二维数组
- Python 栈
- Python 回溯
- Python3 函数
- Python3 多线程
- Python os.close() 方法
- Python os.closerange() 方法
- Python os.rmdir() 方法
- Python os.tcsetpgrp() 方法
- Python os.tmpnam() 方法
- Python os.path() 模块
- Python min()方法
- Python List index()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary pop() 方法