Write a program to convert temperature from Celsius to Fahrenheit
Topic: Write a program to convert temperature from Celsius to Fahrenheit
Solution
Cel = 90 Far = 9.0/5.0 * Cel + 32 print("Temperature:", Cel, "Celsius = ", Far, " F")
List all Python Programs