Question: Python (Loops & Decision Making) Modify main.py file as follows: 1. Ask the user to Enter Sales for the Week. This should be a decimal
Python (Loops & Decision Making) Modify main.py file as follows: 1. Ask the user to "Enter Sales for the Week." This should be a decimal number which is 0 or greater. 2. Ask the user to "Enter Cost of Goods Sold for the Week." This should be a decimal number which is 0 or less. 3. Display the Gross Profit to the user as follows: "Gross Profit is: $ XXX" where XXX represents the calculated gross profit amount. If the user enters a value that is not permissible, the user should be asked to enter the value again. You will need to use the WHILE loop, as well as TRY/EXCEPT to catch the errors. You will also need to use IF/ELSE to compare values. You will need to know how to convert STRING/TEXT into a NUMBER with Decimals. Do NOT use your Functions (created using def). You do not need to read/write to a text file
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
