I learned that dictionary uses hashing for it's keys. Suppose I have a dictionary defined as
dict = { 1.1 : 'hello', 2 : 'bye' }
I can get hello like this
dict.get(1.1)
What I want to do is get the 'hello' through the hash value of the key, something like
dict.get(hash(1.1))
Something like this? How can I do this? I want to check if the hash value is computed or not by python? If it is actually generated than I can directly go to that address and get the value of 'hello', right?