language: Python (python 2.7.3)
date: 423 days 16 hours ago
link:
visibility: public
1
2
3
4
5
6
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()]