hello,
i'd like to check if a function parameter (json) has all the keys I expect
it to have and if it doesn't - point out the one that is missing.
What's the good way of doing that?
"good way" - something concise... i'd like to avoid using :
if key in json:
#pass
else
print(" Oops, i did it again ...")
thank you
AZ