我有两本字典:
a = {'abc': 12}
b = {'abcd': 13, 'abc': 99}
我想检查两个字典中是否存在某个键。在这种情况下,我想检查 a 和 c 是否都包含密钥“abc”
我有以下代码:
if 'abc' in a:
if 'abc' in b:
print(True)
else:
print(False)
else:
print(False)
和:
if ('abc' in a) and ('abc' in b):
print(True)
else:
print(False)
但是有更好的方法吗?