You could use a,b = split(' ', 1).
The second argument 1 is the maximum number of splits that would be done.
s="abcd efgh hijk"
a,b = s.split(' ', 1)
print(a) #abcd
print(b) #efgh hijk
For more information on the string split function, see str.split in the manual.