美文网首页python百例
51-字典常用方法

51-字典常用方法

作者: 凯茜的老爸 | 来源:发表于2018-07-31 17:13 被阅读4次
    adict = dict([('name', 'bob'),('age', 25)])
    len(adict)
    hash(10)  # 判断给定的数据是不是不可变的,不可变数据才能作为key
    adict.keys()
    adict.values()
    adict.items()
    # get方法常用,重要
    adict.get('name')  # 取出字典中name对应的value,如果没有返回None
    print(adict.get('qq'))  # None
    print(adict.get('qq', 'not found'))  # 没有qq,返回指定内容
    print(adict.get('age', 'not found'))
    adict.update({'phone': '13455667788'})
    

    相关文章

      网友评论

        本文标题:51-字典常用方法

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