Answers for "python lower all keys in dict"

0

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
Posted by: Guest on December-08-2020
0

convert dictionary keys/values to lowercase in python

my_dict = {'KEY1': "Hello", 'Key2': "World"} 
new_dict = dict((k.upper(), v.upper()) for k, v in my_dict .items()) 
print(new_dict)
Posted by: Guest on June-22-2021
0

convert dictionary keys/values to lowercase in python

my_dict = {'KEY1': "Hello", 'Key2': "World"} 
new_dict = dict((k, v.lower()) for k, v in my_dict .items()) 
print(new_dict)
Posted by: Guest on June-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language