I have a list of items , for example ["Alice","Bob","Alice","John"] and I want to generate k hash functions such that :
h1("Alice") = val1
h2("Alice") = val2
...
hk("Alice") = val3
I tried using MD5 algorithm in Python2.X for hashing but it will give the same value for the same string.