After CSV import, I have following dictionary with keys in different language:
dic = {'voornaam': 'John', 'Achternaam': 'Davis', 'telephone': '123456', 'Mobielnummer': '234567'}
Now I want to change keys to English and (also to all lowercase). Which should be:
dic = {'first_name': 'John', 'last_name': 'Davis', 'phone': '123456', 'mobile': '234567'}
How can I achieve this?