The str.split() method without an argument splits on whitespace:
str.split()
>>> "many fancy word hello hi".split() ['many', 'fancy', 'word', 'hello', 'hi']
1.4m articles
1.4m replys
5 comments
57.0k users