Python Program to Convert Celsius To Fahrenheit
Topic: Python Program to Convert Celsius To Fahrenheit
Solution
celsius = 37.5 fahrenheit = (celsius * 1.8) + 32 print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit))
List all Python Programs