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 Count the Number of Each Vowel
Python Program to Generate a Random Number
Python Closures
Python sorted()
Python Set symmetric_difference()
Python id()
Python set()
Python Program to Append to a File
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Python Program to Return Multiple Values From a Function
Python String rfind()
Python Function Arguments
Python Set difference_update()
Python String isdecimal()
Python String maketrans()
Python Program to Get the Last Element of the List
Python compile()
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Python globals()
Python memoryview()
Python Dictionary copy()
Python Set discard()
Python Statement, Indentation and Comments
Python String format_map()
Python Program to Randomly Select an Element From the List
Python Program to Measure the Elapsed Time in Python
Python Dictionary setdefault()
Python Program to Access Index of a List Using for Loop
Python slice()
Python String isidentifier()
Python open()
Python len()