When I try to split this string:
str1 = ("S8 10 -945 1689 -950 230 -25 1 1e-13")
print(str1[0,1].split(' '))
I get this error print(str1[0,1].split(' ')) TypeError: string indices must be integers
How would I split this the first two indexes of this string in python?