Write a Python program that reads in numbers from the user until they type STOP, then print out the count, the sum, and
Posted: Fri Jul 01, 2022 5:37 am
Write a Python program that reads in numbers from the user untilthey type STOP, then print out the count, the sum, and themean, i.e., sum/count. Make sure it works even if theytype STOP right away. Don't worry about handling theexception (i.e., the program "crashing") if they type in somethingthat is not a number or STOP.