how to trim all spaces and punctiuation from a sentence and convert all to lowercase in python code example
Example: clean punctuation from string python
s.translate(str.maketrans('', '', string.punctuation))
s.translate(str.maketrans('', '', string.punctuation))