if key in c:
if c[key] == a[key]:
print('key %s 相等' % key)
else:
print('key %s 不相等' % key)
print('c中無key %s' % key)