python——判断字典中是否有键key
提问人:杨紫红发布时间:2020-11-20
l = [1, 2, 3]
t = (1, 2, 3)
d5 = {1:"one", 2:"two", 3:"three"}
print d5.get(1) #one
print d5.get(5) #None
print d5.get(5, "test") #test
has_key(key) ---判断字典中是否有键key
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>