I have string for example: \"238 NEO Sports\". I want to split this string only at the first space. The output should be [\"238\",\"NEO S
\"238 NEO Sports\"
[\"238\",\"NEO S
RTFM: str.split(sep=None, maxsplit=-1)
>>> "238 NEO Sports".split(None, 1) ['238', 'NEO Sports']