if position is None:
print("Number",key,"is not present in the hash table")
else:
print("Number ",key," present at ",position, " position")
# searching for 44
key=44
position = hashFind(key,hashTable)
if position is None:
print("Number",key,"is not present in the hash table")
else:
print("Number ",key," present at ",position, " position")
# searching for 88
key=88
position = hashFind(key,hashTable)
if position is None:
print("Number",key,"is not present in the hash table")
else:
print("Number ",key," present at ",position, " position")
# searching for 121
key=121
position = hashFind(key,hashTable)
if position is None:
print("Number",key,"is not present in the hash table")
else:
print("Number ",key," present at ",position, " position")