def first_stage():
digcode = [] #stores the GTIN sequence
the_list = [3,1,3,1,3,1,3]
for counter in range(7):
digit = input("digit:")
if len(digit) > 1 or len(digit) == 0 or digit[0] == "-":
print("please enter one positive integer")
first_stage() #restarts program to acquire all the numbers
try:
digit = int(digit)
except:
print("please enter an integer")
first_stage()
calculation = digit*(the_list[counter])
digcode.append(calculation)
the_sum = sum(digcode)
check_digit = 10-(the_sum%10) #modular division to calculate the eighth digit
if check_digit == 10:
digcode.append(0)
second_stage(digcode)
else:
digcode.append(check_digit)
second_stage(digcode)
def second_stage(digcode):
the_list3 = []
the_list2 = [3,1,3,1,3,1,3,1]
for counter in range(8):
calculation2 = digcode[counter]*the_list2[counter]
the_list3.append(calculation2)
the_sum2 = sum(the_list3)
validate = the_sum2/10
if validate == int(validate):
print("VALID")
else:
print("INVALID")
first_stage()
输入错误输入后,通过输出" VALID"来检查序列的有效性。或"无效"所以它一直有效。但在此之后,程序由于某种原因再次重新启动。如果输入都是整数并且它们通过了验证检查,则程序输出" VALID"或"无效"并且它在那里结束但是当输入错误的输入时它会自动重启。
digit:1
digit:2
digit:a
please enter an integer
digit:1
digit:2
digit:3
digit:4
digit:5
digit:6
digit:7
INVALID
digit:
即使收到输入后,它仍会继续重启。它重启的次数会有所不同,因此可能取决于我的输入。在某些时候它会停止重新启动并输出一条关于TypeError的长错误消息。