def tokenize(text): return text.split() def normalize(text): return text.lower().strip() def remove_punctuation(text): import string return text.translate(str.maketrans('', '', string.punctuation))