Get your own Python server Result Size: 625 x 565
x
 
my_list = [None, None, None, None, None, None, None, None, None, None]
def hash_function(value):
  sum_of_chars = 0
  for char in value:
    sum_of_chars += ord(char)
  return sum_of_chars % 10
def add(name):
  index = hash_function(name)
  my_list[index] = name
add('Bob')
add('Pete')
add('Jones')
add('Lisa')
add('Siri')
print(my_list)
[None, 'Jones', None, 'Lisa', None, 'Bob', None, 'Siri', 'Pete', None]