PYTHON!!!!! 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

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 28PE
icon
Related questions
Question

PYTHON!!!!!

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:

  1. The sum of the numbers
  2. 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
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Concept of memory addresses in pointers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr