当我尝试拆分此字符串时:
str1 = ("S8 10 -945 1689 -950 230 -25 1 1e-13")
print(str1[0,1].split(' '))
我收到此错误 print(str1 [0,1] .split('')) TypeError:字符串索引必须是整数
如何在python中将此字符串的前两个索引拆分?
答案 0 :(得分:0)
.split()
字符串,然后slice the list检索前两个值。
str = "S8 10 -945 1689 -950 230 -25 1 1e-13"
print str.split(' ')[:2] # ['S8', '10']