Python to convert temperature from degree Celsius to degree Fahrenheit

 

Python to convert temperature from degree Celsius to degree Fahrenheit

#Formula: F=c*(9/5)+32

C=float(input("Enter temperature in Celsius:"))

F=C*(9/5)+32

print("The temperature conversion from degree celsius to degree fahrenheit is:", F)

Output: 


Enter temperature in Celsius:37

The temperature conversion from degree celsius to degree fahrenheit is: 98.60000000000001

टिप्पणी पोस्ट करा

0 टिप्पण्या