I need to read integers until i get the string: 'The End'. And then print the sum of all received ints.
Here i have a code:
i = 0
while True:
a = input()
i += int(a)
print(i)
if a == 'The End':
break
It perfectly collecting all coming integers, however, when i put the string (any) it fails as it expects to get only integers. How do i write the proper break condition?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…