Does exist a command such that splits a string in a way that the whitespaces become a string too?. For example, suppose that the command is "coolsplit":
>>> example='hey, whats up, how are you?'
>>> example.coolsplit()
['hey,',' ','whats',' ','up,',' ','how',' ','are',' ','you?']
Does it exist?