Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started