Write Cost Baked Goods Calculator Ask User Input Three Pieces Information Number Hours Bak Q43908438
Write a “cost of baked goods” calculator. Ask a user to inputthree pieces of information: the number of hours baking (a floatvalue), the cost for having a baker (cost/hour) (a float value),and the cost of the ingredients (a float value). Output the totalcost of the baked goods. The output should be a singlefloating-point number showing the total cost of baked goods roundedup to one decimal place (use round(var,1) ).
main.py
(show code)
Expert Answer
Answer to Write a “cost of baked goods” calculator. Ask a user to input three pieces of information: the number of hours bakin…
OR