MyString = "150 250 400 480"
MyString = MyString.split(" ",2)
print(MyString)
When I run it on spyder, the program spits out 3 elements:
['150', '250', '400 480']
It should just return first 2 elements (as specified):
['150', '250']
Why is this happening?