如何拆分字符串的索引?

时间:2015-09-14 22:12:41

标签: python string

当我尝试拆分此字符串时:

str1 = ("S8 10 -945 1689 -950 230 -25 1 1e-13")
print(str1[0,1].split(' '))

我收到此错误 print(str1 [0,1] .split('')) TypeError:字符串索引必须是整数

如何在python中将此字符串的前两个索引拆分?

1 个答案:

答案 0 :(得分:0)

首先

.split()字符串,然后slice the list检索前两个值。

str = "S8 10 -945 1689 -950 230 -25 1 1e-13"
print str.split(' ')[:2]  # ['S8', '10']