I know the best way to check if the multiple keys exist in a given dictionary.
if {'foo', 'bar'} <= my_dict.keys():
# True
Now I have to check if there is any key exist in given dictionary and got so far this:
if any(k in given_keys for k in my_dict):
# True
I was wondering if there is any way to check this as checked above in first case using subset.