我的代码应该要求输入 7 位数字 (GTIN 8) 并告诉您第 8 位数字和/或要求您输入 8 位数字 (GTIN 8) 数字并判断它是否是有效的 GTIN 8 号码。我没有得到这些输出。
当我输入非 7 位数字时出现错误消息
c = int(GTIN[2])*3
IndexError:字符串索引超出范围
输入 8 位数字时出现错误消息
如果 len(str(GTIN))==8 和 sum(total)%10==0:
TypeError: 'int' object is not iterable 我需要对我的代码做些什么来修复这个错误?
谢谢。这是我的代码(我可以澄清你不确定的任何事情):
while 2>1:
GTIN = input("Enter 7 digit number for check-digit. Enter 8 digit number for validity.")
if GTIN.isdigit()==False:
continue
a = int(GTIN[0])*3
b = int(GTIN[1])*1
c = int(GTIN[2])*3
d = int(GTIN[3])*1
e = int(GTIN[4])*3
f = int(GTIN[5])*1
g = int(GTIN[6])*3
total = (a+b+c+d+e+f+g)
checkdigit = (total + 9) // 10 * 10 - total
if len(GTIN) == 7:
print("Your check digit is",checkdigit)
if len(str(GTIN))==8 and sum(total)%10==0:
print("Valid GTIN-8 number")
else: print("Invalid GTIN number")