Write a python program to Convert Celsius To Fahrenheit
Topic: Write a python program to Convert Celsius To Fahrenheit
Solution
celsius = 37.5 fahrenheit = (celsius * 1.8) + 32 print(f'{celsius} degree Celsius is equal to {fahrenheit} degree Fahrenheit')
List all Python Programs