import re
txt = "Have you ever seen the rain"
print(re.split("\s", txt,1))
#This is splitting at the first space and is giving:
['Have', 'you ever seen the rain']
# But how can i get the splitting done in this way always at the last occurrence of a space?
['Have you ever seen the', 'rain']
#Is there something like a rsplit() ?