How to convert Celcius to Fahrenheit using python code
In this tutorial, we are going to show How to convert Celcius to Fahrenheit using python. We have added the video tutorial and the source code of the program.
Video Tutorial: Convert Celcius to Fahrenheit python code
Source Code
# Python Program to convert celsius to fahrenheit celsius = float(input("Enter temperature in celsius : ")) fahrenheit = (celsius * 1.8) + 32 print('\nTemperature in Fahrenheit : ',fahrenheit)