CampusX SDE Sheet | Write a program that will convert celsius value to fahrenheit

 Write a program that will convert Celsius value to Fahrenheit


a small boy converting celsius to farenhient



'''
Write a program that will convert celsius value to fahrenheit
'''

Cel = float(input("Enter temperature:"))
farenh = (Cel *(9/5)) + 32
print(farenh)

Post a Comment

Previous Post Next Post