标签:调用 item 元组 方法 描述 google 遍历字典 list 使用
Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(键, 值) 元组数组。
items()方法语法:
dict.items()
以列表形式返回可遍历的(键, 值) 元组数组。
以下实例展示了 items() 方法的使用方法:
# !/usr/bin/python3 dict = {‘Google‘: ‘www.google.com‘, ‘Runoob‘: ‘www.runoob.com‘, ‘taobao‘: ‘www.taobao.com‘} print("字典值 : %s" % dict.items()) print("转换为列表 : %s" % list(dict.items())) # 遍历字典列表 for key, values in dict.items(): print(key, values)
以上实例输出结果为:
字典值 : dict_items([(‘Google‘, ‘www.google.com‘), (‘taobao‘, ‘www.taobao.com‘), (‘Runoob‘, ‘www.runoob.com‘)]) 转换为列表 : [(‘Google‘, ‘www.google.com‘), (‘taobao‘, ‘www.taobao.com‘), (‘Runoob‘, ‘www.runoob.com‘)] Google www.google.com taobao www.taobao.com Runoob www.runoob.com
标签:调用 item 元组 方法 描述 google 遍历字典 list 使用
原文地址:http://www.cnblogs.com/wushuaishuai/p/7738282.html