python split first space

Solutions on MaxInterview for python split first space by the best coders in the world

showing results for - "python split first space"
Juan Pablo
31 Apr 2017
1>>> s = "238 NEO Sports"
2>>> s.split(" ", 1)
3['238', 'NEO Sports']
4