beginnerbasicMaths
Python Program to Convert Celsius to Fahrenheit
# take inputs
cel = float(input())
# calculate Fahrenheit
fahr = (cel * 1.8) + 32
# display result
print('%0.1f degrees Celsius is equivalent to %0.1f
degrees Fahrenheit' %(cel, fahr))