In this program, you’ll learn to convert Celsuis to Fahrenheit and display it.
To understand this example, you should have the knowledge of the following Python programming topics:
In the program below, we take a temperature in degree Celsius and convert it into degree Fahrenheit. They are related by the formula:
celsius * 1.8 = fahrenheit - 32
Source Code
# Python Program to convert temperature in celsius to fahrenheit
# change this value for a different result
celsius = 37.5
# calculate fahrenheit
fahrenheit = (celsius * 1.8) + 32
print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit)
Output
37.5 degree Celsius is equal to 99.5 degree Fahrenheit
We encourage you to create a Python program to convert Fahrenheit to Celsius on your own using the following formula
celsius = (fahrenheit - 32) / 1.8
Related posts:
Python Program to Print Hello world!
Python String isdecimal()
Python Functions
Python round()
Python strftime()
Python Namespace and Scope
Python tuple()
Python help()
Python List reverse()
Python filter()
Python issubclass()
Python staticmethod()
Python bytearray()
Python bytes()
Introduction to Scientific Programming with Python - Joakim Sundnes
Python Set symmetric_difference()
Python String rindex()
Python Dictionary values()
Python Matrices and NumPy Arrays
Python Custom Exceptions
Python Program to Merge Mails
Python all()
Python Program to Check If a List is Empty
Python memoryview()
Python Program to Differentiate Between type() and isinstance()
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python timestamp to datetime and vice-versa
Python Data Types
Machine Learning Mastery with Python - Understand your data, create accurate models and work project...
Python frozenset()
Python map()
Python Numbers, Type Conversion and Mathematics