我目前正在嘗試循環並從列表中打印特定值。 我試圖做到這一點的方式就是這樣。如何使用for循環來循環遍歷Python中的嵌套列表
for i in range(len(PrintedList)):
index = i
elem=PrintedList[i]
print(elem)
print ("Product = ", PrintedList [index,1], "price £",PrintedList [index,2])
然而,這返回的錯誤:
TypeError: list indices must be integers or slices, not tuple.
我真的不確定該怎麼做才能解決這個問題。
發佈輸出(或小樣本)'print(Pri ntedList)',所以我們可以看看實際的結構。我們不能通過查看不起作用的代碼來猜測=) – slezica
你可能指的是'PrintledList [index] [1]'和'PrintedList [index] [2]'? – TidB