class HashTable: def __init__(self, table_size = 32000, b_value = 6000): self.table_size = table_size * [None] self.b_value = b_value