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 Get Line Count of a File
Python List count()
Python Program to Reverse a Number
Python for Loop
Python divmod()
Python String format()
Deep Learning with Python - Francois Cholletf
Introduction to Scientific Programming with Python - Joakim Sundnes
Python String lower()
Python sum()
Python Program to Get the Full Path of the Current Working Directory
Python Program to Catch Multiple Exceptions in One Line
Python Program to Find LCM
Python format()
Python Program to Merge Two Dictionaries
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python String isalpha()
Python List Comprehension
Python Input, Output and Import
Python Set clear()
Python Program to Count the Number of Occurrence of a Character in String
Python filter()
Python Program to Iterate Over Dictionaries Using for Loop
Python String expandtabs()
Python Sets
Python Keywords and Identifiers
Python Program to Find the Square Root
Python String join()
Python Program to Delete an Element From a Dictionary
Python Program to Swap Two Variables
Python input()