如何在while循环中使用append?

时间:2016-01-31 09:39:54

标签: python

我可以输入有效的gtin,例如(12345670,13245627)和2个数量,但不知道为什么当我使用追加功能时它们都不会出现在列表中,它只打印最后一个

void FinallyMethod()
{
   //...
   if (x == y)
       return;
   else
       a = b;
   //etc.
}

1 个答案:

答案 0 :(得分:0)

删除行

    qty=[quantity]
    gtin8=[gtin]

因为它会覆盖包含先前值的列表。

while not cont:

之前创建空列表
qty = []
gtin8 = []

while not cont: