这是我的问题:
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
答案 0 :(得分:1)
您可以在range
和0
的长度之间使用toto
:
result = list(range(0, len(toto)))