The str.split() method without an argument splits on whitespace:
str.split()
>>> "many fancy word hello hi".split() ['many', 'fancy', 'word', 'hello', 'hi']
2.1m questions
2.1m answers
60 comments
57.0k users