Write a program that uses a while loop to enable the user to enter any number of positive integers. The loop should end when a sentinel value of 0 (zero) is entered. The program should then report the sum of the even integers and the sum of the odd integers. This must be written in Python. I have most of it figured out, I just don't know how to add an accumulator for the odd and even numbers. I have attached what I have so far below. Thank you! def main(): TOTAL = 0 print('This program calculates all odd and even positive numbers entered') num = int(input('Enter a positive number or 0 to quit: ')) while num != 0: if num % 2 == 0: print(f'This {num} is even') else: print(f'This {num} is odd') num = int(input('Enter a positive number or 0 to quit: ')) total_even = num % 2 == 0 total_odd = num % 2 != 0 total_even_num = total_even + num total_odd_num = total_odd + num print(f'Your total of even number is {total_even_num}') print(f'Your total of odd numbers is {total_odd_num}') main ()
Write a
This must be written in Python. I have most of it figured out, I just don't know how to add an accumulator for the odd and even numbers. I have attached what I have so far below. Thank you!
def main():
TOTAL = 0
print('This program calculates all odd and even positive numbers entered')
num = int(input('Enter a positive number or 0 to quit: '))
while num != 0:
if num % 2 == 0:
print(f'This {num} is even')
else:
print(f'This {num} is odd')
num = int(input('Enter a positive number or 0 to quit: '))
total_even = num % 2 == 0
total_odd = num % 2 != 0
total_even_num = total_even + num
total_odd_num = total_odd + num
print(f'Your total of even number is {total_even_num}')
print(f'Your total of odd numbers is {total_odd_num}')
main ()

Step by step
Solved in 4 steps with 2 images









