I made a dictionary using python
dictionary = {'key':'a', 'key':'b'})
print(dictionary)
print (dictionary.get("key"))
When run this code then shows the last value of dictionary, Is there any way to access the first value of dictionary if keys of both elements of dictionary are same.