在循环

时间:2017-10-28 20:18:01

标签: python list for-loop

如何从多维列表中分离值,并使用for-loop将它们分配给各个变量? (不知道列表中的列表数量。)

list = [ [ 1 , 2 ] , [ 3 , 4 ] , [ 5 , 6 ] , [ 7 , 8 ] , [ 9 , 10 ] ]
list1 = [ ]
list2 = [ ]
list3 = [ ]

for i in range(len(listA)):
    list1.append(listA[0]) 

输出list1

[ 1 , 2 ]

输出list2

[ 3 , 4 ]

1 个答案:

答案 0 :(得分:-1)

好吧,想一想。你已经拥有了所需的东西:

list1 = list[0]
list2 = list[1] 
... and so on.