Question: Python Script format please! 1. Write a script that takes in three integer numbers from the user, calculates, and displays the sum, average, product, smallest,
Python Script format please!
1. Write a script that takes in three integer numbers from the user, calculates, and displays the sum, average, product, smallest, and largest of the numbers input. Important things to note: a. You cannot use the min() or max() functions, you must provide the logic yourself b. The calculated average must be displayed as an integer value (ex. If the sum of the three values is 7, the average displayed should be 2, not 2.3333). Example: If I were to input 3, 4, and 5 for my integers, the output would be:
2. Write a script that calculates the squares and cubes of the integers from 0 to 10, printing the results in a table format, shown below: 
Problem 1 Solution Please enter the first number 3 Please enter the second number: 4 Please enter the third number: 5 The sum is: 12 The average is: The product is: 60 The largest number is 5 The smallest number is 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
