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
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
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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:
- 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
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images
Knowledge Booster
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.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education