You can use a second argument to split
>>> "1900 120 Date Night".split(" ", 2)
['1900', '120', 'Date Night']
Otherwise, use a regular expression (the re module).
Gribouillis
Posting Maven
2,786 posts since Jul 2008
Reputation Points: 1,044
Solved Threads: 691