Question
Edit the program provided so that it receives a series of numbers from the user and allows the user to press the enter key to
Edit the program provided so that it receives a series of numbers from the user and allows the user to press the enter key to indicate that he or she is finished providing inputs. After the user presses the enter key, the program should print:
- The sum of the numbers
- The average of the numbers
An example of the program input and output is shown below:
Enter a number or press Enter to quit: 1
Enter a number or press Enter to quit: 2
Enter a number or press Enter to quit: 3
Enter a number or press Enter to quit:
The sum is 6.0
The average is 2.0
# Edit the code below
theSum = 0.0
data = input("Enter a number: ")
while data != "":
number = float(data)
theSum += number
data = input("Enter the next number: ")
print("The sum is", theSum)
Results you should get:
Input: 1, 2, 3
Output:
Enter a number and for exit press Enter: 1
Enter a number and for exit press Enter: 2
Enter a number and for exit press Enter: 3
Enter a number and for exit press Enter:
The sum is: 6.0
The average is 2.0
Input: 12, 13, 14, 27
Output:
Enter a number and for exit press Enter: 12
Enter a number and for exit press Enter: 13
Enter a number and for exit press Enter: 14
Enter a number and for exit press Enter: 27
Enter a number and for exit press Enter:
The sum is: 66.0
The average is 16.5
Input: 100, 59, 37, 21
Output:
Enter a number and for exit press Enter: 100
Enter a number and for exit press Enter: 59
Enter a number and for exit press Enter: 37
Enter a number and for exit press Enter: 21
Enter a number and for exit press Enter:
The sum is: 217.0
The average is 54.25
Input: 0, 45, 32
Output:
Enter a number and for exit press Enter: 0
Enter a number and for exit press Enter: 45
Enter a number and for exit press Enter: 32
Enter a number and for exit press Enter:
The sum is: 77.0
The average is 25.666666666666668
Input: -23, 45, 67
Output:
Enter a number and for exit press Enter: -23
Enter a number and for exit press Enter: 45
Enter a number and for exit press Enter: 67
Enter a number and for exit press Enter:
The sum is: 89.0
The average is 29.666666666666668
PYTHON!!!!!
Step by Step Solution
3.33 Rating (156 Votes )
There are 3 Steps involved in it
Step: 1
According to the problem statement Coded the program using PYTHON Below are the snippets Code Snippe...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started