用另一个数组的发布数量创建一个数组:

时间:2018-10-20 20:11:13

标签: python

这是我的问题:

toto = [1,4,5,2,4,7]

此数组为6个帖子

所以我想从toto数组中获得一个包含6个帖子(从0到5)的数组(结果在这里)

print(result)
..[0,1,2,3,4,5] 

比:更优雅的东西

result = []
i = 0
for t in toto :
    result.push(i)
    i = i +1

1 个答案:

答案 0 :(得分:1)

您可以在range0的长度之间使用toto

result = list(range(0, len(toto)))