如何从列表中的列表中获取对象

时间:2014-11-14 21:43:48

标签: python list class

我有一个名为productInv的主列表,其中包含许多子列表。每个子列表都有4个对象[name, units, cost, price]。我需要一种方法来使用cost循环从主列表中的每个子列表中获取unitsfor

到目前为止,我有:

for prod in productInv:
    itemCost = prod[2]

这给了我一个错误:object does not support indexing

0 个答案:

没有答案