python make keys of dictionary lower case code example
Example: python code to convert all keys of dict into lowercase
my_dict = {'KEY1': "Hello", 'Key2': "World"}
new_dict = dict((k.lower(), v) for k, v in my_dict .items())
print(new_dict
my_dict = {'KEY1': "Hello", 'Key2': "World"}
new_dict = dict((k.lower(), v) for k, v in my_dict .items())
print(new_dict