错误代码:基数为10的int()的文字无效:

时间:2017-03-10 14:20:34

标签: python python-2.7

我正在创建一个需要读取文件的程序,如果文件中有某个数字,我想要它打印它需要重新进货。

table=[[gtin1[0][0], "re-stocking level"]]

#check for zero
for i in range (len(gtin1)):
        if int(gtin1[i][3])<=0:
                item=[gtin1[i][0],gtin1[i][1]]
                table.append(item)

print tabulate(table,headers="firstrow")


This is the table 
  Gtin-8  Product description      Quinty    Price    total
--------  ---------------------  --------  -------  -------
12345670  red cars                      2      0.5        1

0 个答案:

没有答案