Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
725 views
in Technique[技术] by (71.8m points)

while loop - How to get integers from input and break after receiving string

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?

question from:https://stackoverflow.com/questions/65598497/how-to-get-integers-from-input-and-break-after-receiving-string

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...