for x in thisdict:
print(thisdict[x])
运行实例
实例
您还可以使用 values() 函数返回字典的值:
for x in thisdict.values():
print(x)
运行实例
实例
通过使用 items() 函数遍历键和值:
for x, y in thisdict.items():
print(x, y)
运行实例
检查键是否存在
要确定字典中是否存在指定的键,请使用 in 关键字:
实例
检查字典中是否存在 "model":
thisdict = {
"brand": "Porsche",
"model": "911",
"year": 1963
}
if "model" in thisdict:
print("Yes, 'model' is one of the keys in the thisdict dictionary")
运行实例
字典长度
要确定字典有多少项目(键值对),请使用 len() 方法。