我可以输入有效的gtin,例如(12345670,13245627)和2个数量,但不知道为什么当我使用追加功能时它们都不会出现在列表中,它只打印最后一个
void FinallyMethod()
{
//...
if (x == y)
return;
else
a = b;
//etc.
}
答案 0 :(得分:0)
删除行
qty=[quantity]
gtin8=[gtin]
因为它会覆盖包含先前值的列表。
在while not cont:
qty = []
gtin8 = []
while not cont: