Assignment 02 SOL
Assignment 02 SOL
2. Write a program that converts Celsius temperatures to Fahrenheit temperatures. The formula is
as follows:
celsius = float(input(" enter a temperature in Celsius: "))
f = (9/5) * celsius + 32
print("the temperature converted to Fahrenheit",f)