Create a new file name condition_quiz.py.
Add a comment with your name and the date.
Prompt the user to enter the cost. Convert the input to afloat.
Prompt the user for a status. Convert the status to aninteger
Compute the special_fee based on the status.
If the status is 0, the special_fee will be 0.03 of thecost.
Else if the status is 1, the special_fee will be 0.04 of thecost.
Else if the status is 2, the special_fee will be 0.06 of thecost.
Else if the status is 3 or 4, the special_fee, the special_feewill be 0.07 of the cost.
Otherwise, the special_fee will be 0.10 of the cost.
Compute the total_cost as the cost plus the special_fee. Printout the total_cost with two decimal places of precision.