美文网首页
有关字典

有关字典

作者: g0 | 来源:发表于2018-08-20 16:22 被阅读6次

    判断字典是否存在某个key

    s = {'a':'1', 'b':'2', 'c':'3'}
    print s.has_key('d')
    False
    print s.has_key('a')
    True
    print 'a' in s
    True
    print 'd' in s
    False
    

    in 比 has_key 快

    相关文章

      网友评论

          本文标题:有关字典

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