Can someone help me with the following program please. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help me with the following program please.

Write a python program uses a WHILE loop. The program must prompt the user to enter the integer number. The value must be added to a total. The loop must continue until the total exceed 45. After the loop, the average of the members must be calculated. The program must display each of the input values, as well as the sum of all values and the average value.

31st Mar 2020, 3:41 PM
Gift Mokoena
Gift Mokoena - avatar
2 Answers
+ 2
Kindly first show your attempt.Then we would help you in your code.
31st Mar 2020, 3:46 PM
Muhammad Bilal
Muhammad Bilal - avatar
0
total =45 count=0 InputValue= [ ] while total <= 45: user = int(input("Enter the integer : ") total= total+user count= count+1 inputValue.append(user) print(" Input Values": ,inputValue) print(" sum value :"+str(total)) print("Average value :" +str(total/count))
31st Mar 2020, 6:54 PM
Rishi
Rishi - avatar