-3
我有一些意想不到的結果,嘗試使用函數遍歷列表列表。返回列印功能使用列表
A = [[1,2,3],
[4,5,6]]
def list_of_lists(l):
for i in l:
return i
print list_of_lists(A)
Out : [1, 2, 3]
A = [[1,2,3],
[4,5,6]]
def list_of_lists(l):
for i in l:
print i
print list_of_lists(A)
Out : [1, 2, 3]
[4, 5, 6]
None
爲什麼它似乎像我只有返回時,我的函數使用返回A的第一個元素?