Write Program Prompts User Enter Temperature Degrees Celsius Program Convert Temperature D Q43794922
Hi there
please help me fix the syntax error
Write a program that prompts the user to enter a temperature in degrees Celsius. The program should then convert the temperature to degrees Fahrenheit. The formula for converting Celsius to Fahrenheit is: fahrenheit = 32 + (9/5) * celsius Print the result to two decimal places. For example: Input Result 19.5 Enter a degree in Celsius: 19.5 19.50 Celsius is 67.10 Fahrenheit. Answer: (penalty regime: 0, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50 %) 1 celsius = round(int(input(“Enter a degree in Celsius: “)), 2) fahrenheit = round(int((32 + (9 / 5) * celsius), 2) print(celsius, “Celsius is”, fahrenheit, “.”) mt Syntax Error(s) File “_tester__.python3”, line 9 print(celsius, “Celsius is” , fahrenheit, “.”) SyntaxError: invalid syntax Incorrect Marks for this submission: 0.00/1.00. This submission attracted a penalty of 0.20. Show transcribed image text Write a program that prompts the user to enter a temperature in degrees Celsius. The program should then convert the temperature to degrees Fahrenheit. The formula for converting Celsius to Fahrenheit is: fahrenheit = 32 + (9/5) * celsius Print the result to two decimal places. For example: Input Result 19.5 Enter a degree in Celsius: 19.5 19.50 Celsius is 67.10 Fahrenheit. Answer: (penalty regime: 0, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50 %) 1 celsius = round(int(input(“Enter a degree in Celsius: “)), 2) fahrenheit = round(int((32 + (9 / 5) * celsius), 2) print(celsius, “Celsius is”, fahrenheit, “.”) mt
Syntax Error(s) File “_tester__.python3”, line 9 print(celsius, “Celsius is” , fahrenheit, “.”) SyntaxError: invalid syntax Incorrect Marks for this submission: 0.00/1.00. This submission attracted a penalty of 0.20.
Expert Answer
Answer to Write a program that prompts the user to enter a temperature in degrees Celsius. The program should then convert the tem…
OR