标签: python-2.7 dictionary
我有以下词典
visibilty.INVISIBLE
我正在使用a= {"b":"2", "c":"3","e":"5"} 语句在dict中查找键的存在,如下所示
a= {"b":"2", "c":"3","e":"5"}
if
如果密钥if ("c" or "s") in a: print a['s'] 不可用,我会收到错误消息。但我有s
if ("c" or "s") in a: print a['s']
s
我的问题是如何在print语句中获取特定键的值。即a['c']语句应独立于print语句中的键。
a['c']
print