test = "hello,how are you?I am fine,thank you. And you?"

print [t for x in test.split(",")
         for y in x.split(".")
         for z in y.split("?")
         for t in z.split()]