位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

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)
返回顶部