
program2_1.py
Write a program that prints the following lines but replacing the (?) with correct answers:
The Python (?) data type is for numeric values with decimals.
The (?) data type is for non-numeric data like names and addresses.
The Python operator for exponent arithmetic is (?).
The (?) operator suppresses the print function's newline.
The (?) function is used to control the output of decimal places.
program2_2.py
Write a program that prompts the user to enter a time in seconds over 500 and then displays that time in minutes and seconds. Hint: review the Python math operators on page 54.
program2_3.py
Write a program that prompts the user to enter the three dimensions, possibly with decimals, of a cardboard shipping box. The program should then print the volume of the box accurate to two decimal places and the total surface area of the box accurate to three decimal places.
program2_4.py
Acme Auto pays salespersons 3.5% commission on their sales. Assign that value to a properly named constant. Sasha sold three cars. Write a program that prompts for the selling prices of the three cars and calculates her total sales and commission. Express both answers in currency format with no space between the $ sign and the first digit, a comma to indicate thousands and two decimal places.
Think you are done and ready to submit? Stop, recheck the requirements and make sure you have adhered to them. Your professor is your customer and will "pay" you in grade points. "Attention to detail" is an essential skill for programmers.

Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

- Write a C++ code segment (NOT AN ENTIRE PROGRAM) that does the following: lue ray 1. Declare an array that can hold 900 elements of type double se e a 2. Prompt the user for one double 3. Assign values to the array so that the first 450 elements are set to the value of the user's input and the last 450 elements are set to three times the value of the user's input.arrow_forwardWrite a C++ program that will input temperatures for consecutive days. The program will store these values into an array and call a function that will return the average of the temperatures. It will also call a function that will return the highest temperature and a function that will return the lowest temperature. The user will input the number of temperatures to be read. There will be no more than 25 temperatures. For Full Credit You must have a comment block header at the top of your program. See the Standards document in Course Content You must use a constant to represent the maximum number of temperature readings You must use the correct data types for your constants and variables You must use an array of the correct data type You must validate your input. Check for number of invalid number of readings (> max, < 1, etc) and display appropriate error message. You must use one or more if/else branches for your decisions You must use a loop to read in the temperatures…arrow_forwardplease use python.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





