请问如何把简单列表变成一个嵌套列表呢?
比如列表为[3,2,12,4,5,6,7,8,9] 变成 这种嵌套列表[[3,2,12],[4,5,6],[7,8,9]]呢?麻烦大神指导一下,谢谢,十分感谢!
temp=0
list_end=[]
list_start=[3,2,12,4,5,6,7,8,9]
for i in range(3):
list_temp=[]
for x in range(3):
list_temp.append(list_start[temp])
temp=temp+1
list_end.append(list_temp)
print(list_start)
print(list_end)
[3, 2, 12, 4, 5, 6, 7, 8, 9]
[[3, 2, 12], [4, 5, 6], [7, 8, 9]]
是这样吗?