python 字典items()方法

作者: Aurora_Twinkle | 来源:发表于2018-03-27 21:54 被阅读0次

    欢迎关注本人博客:云端筑梦师

    描述

    Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(键, 值) 元组数组。

    语法

    Dict.items()

    参数

    • NA

    返回值

    以列表形式返回可遍历的(键, 值) 元组数组。

    实例

    示例代码:

    D = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'}
    print("字典值 : %s" % D.items())
    print("转换为列表 : %s" % list(D.items()))
    # 遍历字典列表
    for key, value in D.items():# 遍历字典列表
        print(key, value)
    

    上述代码输出:

    字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')]
    Google www.google.com
    taobao www.taobao.com
    Runoob www.runoob.com
    

    相关文章

      网友评论

        本文标题:python 字典items()方法

        本文链接:https://www.haomeiwen.com/subject/jxkecftx.html