THON PROGRAMMING ONLY PLZZ Ask the user to enter numbers: You must have a way for the user to stop entering numbers. An example would be to have the user type q.   Store the numbers the user entered into a list Calculate the total Calculate the average Calculate the largest number Display the following information to the user:   How many numbers the user entered The total The average The largest number Print each value with a descriptio

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
icon
Related questions
Question

PYTHON PROGRAMMING ONLY PLZZ

Ask the user to enter numbers:

You must have a way for the user to stop entering numbers. An example would be to have the user type q.

 

  • Store the numbers the user entered into a list
  • Calculate the total
  • Calculate the average
  • Calculate the largest number

Display the following information to the user:

 

  • How many numbers the user entered
  • The total
  • The average
  • The largest number

Print each value with a description do not just print numbers to the console. Describe each number as they print.

Expert Solution
Step 1

Program Approach:

 

1- As mentioned in the assignment make the program user option like "do you want to continue y/q".
2- If the user enters y then the program flow will continue. 
3- If the user enters q then the program will break immediately.
4- Define the empty list as number_list = []
5- Prompt a message to take the list size from a user. 
6- As per list size loop will iterate and append the number into the list.
7- sum function use to calculate the total number of a list item.
8- len function is used to find the total number of list sizes. 
9- Now, the total number of lists and divided by list size to calculate the average. 
10- Please check the following complete example and output screenshot. 

 

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Program on Numbers
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
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education