I have a dictionary in Python with some keys and their values. like-
states = {"Rajasthan": "Jaipur", "Madhyapradesh" :"Bhopal", "Maharashtra" : "Mumbai", "Tamilnadu": "Chennai" }
I want to retrieve list of all keys of this dictionary like -
["Rajasthan", "Madhyapradesh", "Maharashtra", "Tamilnadu"]
How can i do this.