Convert Celsius to Fahrenheit

 celsius = 25

fahrenheit = (celsius * 9/5) + 32

print(celsius, "degrees Celsius is", fahrenheit, "degrees Fahrenheit")


Comments

Popular posts from this blog

Simple Python Program Code for Snake Game

Project 01: Python Code for Music Recommendation with Explanation

Iris Flowers Classification ML Project with Code