def convert_keys_to_lowercase(input_dict): return {key.lower(): value for key, value in input_dict.items()}