Is there a function in python to split a string without ignoring the spaces in the resulting list e.g
s="This is the string i want to split".split() gives me this
s ['This', 'is', 'the', 'string', 'i', 'want', 'to', 'split']
i want something like; ['This',' ','is',' ', 'the',' ','string', ' ', .....]
