Get specific key from python dictionary

fruits_dict ={'Mango':20,'Apple':100,'Orange':300,'Grapes':220}
#Get Specific key e.g. Apple
l = list(fruits_dict)
print(l[1])


Comments