0 Comments
Answer:
#Program from Celsius to Fahrenheit
celsius = float(input("Enter temperature in celsius: "))
fahrenheit = (celsius * 9/5) + 32
print(f'{celsius} Celsius is: {fahrenheit} Fahrenheit')
9.4m questions
12.2m answers