Hash in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hash in python

Hello dear learners, Could you please explain how hash method work in python for dictionaries and sets? What is the formula behind it? And how it reduces the overall speed of the code? Thank you!

28th Nov 2022, 8:00 AM
Ruslan Guliyev
Ruslan Guliyev - avatar
6 Answers
+ 3
Public source code of the hash function in cpython: https://github.com/JUMP_LINK__&&__python__&&__JUMP_LINK/cpython/blob/main/Python/pyhash.c Basically hash is a function that generates a unique identifier which depends on the data itself. You can consider it as the fingerprint of the object. When you lookup keys in a dictionary or elements of a set, it is very quick because only the hashes are compared, not the entire object.
28th Nov 2022, 9:05 AM
Tibor Santa
Tibor Santa - avatar
+ 3
Hash is calculated for each value separately when it is inserted (appended).
29th Nov 2022, 8:33 AM
Tibor Santa
Tibor Santa - avatar
+ 2
Tibor Santa, Thank you for your response! Could you please explain why it is faster? Logically it requires extra time for computing hashes too.
28th Nov 2022, 9:38 AM
Ruslan Guliyev
Ruslan Guliyev - avatar
+ 1
I suggest you read about hash tables. https://en.m.wikipedia.org/wiki/Hash_table You could imagine them as a library catalog, which contains the reference to all the books in the library and makes it really quick to find, on which shelf to find your book. Hash tables have practically O(1) time complexity for lookup, which means that the speed does not depend on the size of the collection. Even for a large dictionary or set, the lookup by key is instant, Python does not need to browse through all the elements. That is why it's very fast.
28th Nov 2022, 7:51 PM
Tibor Santa
Tibor Santa - avatar
+ 1
Tibor Santa, Thank you! Now it is more clear. Could you please also explain at what time is the hash value for a dictionary or set calculated? I mean is it already precalculated for all values in python or is it calculated in the time of data set execution?
29th Nov 2022, 8:00 AM
Ruslan Guliyev
Ruslan Guliyev - avatar
+ 1
Tibor Santa Thanks! You helped me a lot. Really appreciate it :)
29th Nov 2022, 9:58 AM
Ruslan Guliyev
Ruslan Guliyev - avatar