Write Python programs to solve the problems below. Please use the suggested names for your programs.Start each program with your name and SPC ID# in a comment.Plan each program by writing pseudocode. Write all of your pseudocode as comments immediately after your name and SPC ID#.Add more comments as needed in each program to explain your code.Choose descriptive variable names in all programs.Currency format. There should be no space between the $ sign and the first digit. See sep on page 66 to cancel the space automatically added when print items are separated by commas. Display commas as needed for values over $1,000.Resist the urge to go your own way by writing a program that ignores the requirements. Solve the problem as the requirements specify..Upload all files to this drop box.Type your collaboration statement as a comment in a program you did not code by yourself.program3_1.pyShipping is free for online orders totaling $50 or more at Mississippi.com. Orders less than $50 are charged $7.00 for shipping. 7% sales tax is added for items that are taxable. A shopper is ordering one item, but possibly in multiple quantities. Write a program that prompts for the unit price of the item and the quantity desired. The program should also ask if the item is taxable and clearly indicate how the shopper should reply. Finally, the program should display a four line receipt that shows the subtotal of the purchase, sales tax, shipping cost, and total amount due. All amounts should be in currency format as described in the requirements above, program3_2.pySelling a new vehicle pays a salesperson $1800. Selling a used vehicle pays a commission of 10% of the selling price. Write an interactive program that calculates a salesperson's total pay for selling two vehicles, one of each type. The program should prompt the salesperson to enter the type and selling price of each vehicle. Do not use a loop. The program should then display the salesperson's total sales and total pay. Express these amounts in currency format as described in the requirements above. program3_3.pyWrite a wholly creative quiz program that consists of three original questions that you make up according to these specifications: One question should require user input of type intOne question should require user input of type floatOne should require a string input
Write Python programs to solve the problems below. Please use the suggested names for your programs.
Start each program with your name and SPC ID# in a comment.
Plan each program by writing pseudocode. Write all of your pseudocode as comments immediately after your name and SPC ID#.
Add more comments as needed in each program to explain your code.
Choose descriptive variable names in all programs.
Currency format. There should be no space between the $ sign and the first digit. See sep on page 66 to cancel the space automatically added when print items are separated by commas. Display commas as needed for values over $1,000.
Resist the urge to go your own way by writing a program that ignores the requirements. Solve the problem as the requirements specify..
Upload all files to this drop box.
Type your collaboration statement as a comment in a program you did not code by yourself.
program3_1.py
Shipping is free for online orders totaling $50 or more at Mississippi.com. Orders less than $50 are charged $7.00 for shipping. 7% sales tax is added for items that are taxable. A shopper is ordering one item, but possibly in multiple quantities. Write a program that prompts for the unit price of the item and the quantity desired. The program should also ask if the item is taxable and clearly indicate how the shopper should reply. Finally, the program should display a four line receipt that shows the subtotal of the purchase, sales tax, shipping cost, and total amount due. All amounts should be in currency format as described in the requirements above,
program3_2.py
Selling a new vehicle pays a salesperson $1800. Selling a used vehicle pays a commission of 10% of the selling price. Write an interactive program that calculates a salesperson's total pay for selling two vehicles, one of each type. The program should prompt the salesperson to enter the type and selling price of each vehicle. Do not use a loop. The program should then display the salesperson's total sales and total pay. Express these amounts in currency format as described in the requirements above.
program3_3.py
Write a wholly creative quiz program that consists of three original questions that you make up according to these specifications:
One question should require user input of type int
One question should require user input of type float
One should require a string input
Trending now
This is a popular solution!
Step by step
Solved in 5 steps with 3 images