EXAMPLE: sent = "hello my name is Ankur. I lives in canada. I am goods. I studies at concordia. I studies software engineering"
lst= sent.split(".")
preprocess = lemmatize_preprocessing(lst)
OUTPUT: ['hello name ankur',
'life canada',
'good',
'study concordia',
'study software engineering']