发布时间:2019-08-30 08:33:10编辑:auto阅读(2154)
In Python, you can use the in operator to check if a key exists in a dictionary.
test.py
def main():
fruits = {
'apple':1,
'orange':2,
'banana':3
}
#if key 'apple' exists in fruits?
if 'apple' in fruits:
print(fruits['apple'])
if __name__ == '__main__':
main()
Output
1
P.S Tested with Python 3.4.3
Note
has_key()
is deprecated in favor of key in d
.
上一篇: 【脚本】python中wmi介绍和使用
下一篇: python -- 计算 平方,乘方,平
50962
50343
40958
37828
32292
29182
28071
22899
22862
21193
1055°
1731°
1419°
1352°
1616°
1443°
2097°
3640°
3569°
2514°