Reputation: 49
What is the different between hashable and hashobject in python?
Upvotes: 0
Views: 1231
Reputation: 147
Hashable
Hashtable
hash() in python
In [1]: hash ('seed_of_wind')
Out[1]: 8762898084756078118
By hash object, do you mean by hashable object? If so, it is covered above
Upvotes: 2