Create a Python class that implements the methods of a hash table algorithm.
Implement the following methods.
hash_key
converts a string into a index that fits the table bucketsset
inserts value into buckets under the hash for keyget
returns the value associated with key if in tableremove
deletes the entry associated with a key