Python Program to Convert Celsius to Fahrenheit

Write a Python Program to Convert Celsius to Fahrenheit. This Python example allows entering the temperature in Celsius and converting it to Fahrenheit using a math formula.

celsius = float(input("Please Enter the Temperature in Celsius = "))

fahrenheit = (1.8 * celsius) + 32
//fah = ((cel * 9)/5) + 32

print("%.2f Celsius Temperature = %.2f Fahrenheit" %(celsius, fahrenheit))
Python Program to Convert Celsius to Fahrenheit C to F  Example