TypeError:只能将列表(而不是“ str”)连接到列表-Python

时间:2018-07-17 13:06:14

标签: python python-2.7

我有一些这样的代码:

for x in self.fiturs:
    a = x[:1] + x[-5]
    uji.append(a)

数据为:

A,1,7,8,7,9
B,1,1,1,2,3
C,2,34,5,1,2

我只想获取index 0index 3。所以我想要的输出是这样的:

A,8
B,1
C,5

我该怎么做?

1 个答案:

答案 0 :(得分:3)

x[:1]list,而x[-5]str

如果您想要索引0和3,可以执行以下操作:

a = [x[0], x[3]]