标签: python list class
我有一个名为productInv的主列表,其中包含许多子列表。每个子列表都有4个对象[name, units, cost, price]。我需要一种方法来使用cost循环从主列表中的每个子列表中获取units和for。
productInv
[name, units, cost, price]
cost
units
for
到目前为止,我有:
for prod in productInv: itemCost = prod[2]
这给了我一个错误:object does not support indexing。
object does not support indexing