python-by-example-150-chall.../challenges45-51/challenge-045.py

7 lines
171 B
Python
Raw Normal View History

2019-07-17 21:43:09 +08:00
total = 0
while total <= 50:
number = int(input('Enter number : '))
total = total + number
print('The total is ... {0}'.format(total))
print('While loop end')