Create a function that takes three arguments (first dictionary, second dictionary, key) in order to:
True if both dictionaries have the same values for the same keys."Not the same", or the string "One's empty" if only one of the dictionaries contains the given key.dict_first = { "sky": "temple", "horde": "orcs", "people": 12, "story": "fine", "sun": "bright" }
dict_second = { "people": 12, "sun": "star", "book": "bad" }
check(dict_first, dict_second, "horde") ➞ "One's empty"
check(dict_first, dict_second, "people") ➞ True
check(dict_first, dict_second, "sun") ➞ "Not the same"
KeyError can occur when trying to access a dictionary key that doesn't exist.