test_dict = {"Geeks" : 1, "for" : 2, "geeks" : 3} # using in operator to # get key and value for i in test_dict : print(i, test_dict[i])