How to convert Celsius to Fahrenheit | Python exercise #6
46K views
Nov 21, 2022
This is a simple Python program where you can convert the temperature which is celsius to Fahrenheit. In order to do this exercise, first, we need to get the celsius from the user. As usual, as we did in the previous exercise we will use the eval method to get the desired variable type. Now it’s time to convert the Celsius to Fahrenheit. Tips to follow : Take the input of celsius from the user. Convert the Celsius to Fahrenheit using the formula - Fahrenheit = 9/5 * celsius + 32. If it is greater than 90, print the result as really hot. If it is less than 30, print the result as extreme cold. Playlist : https://youtube.com/playlist?list=PLgNt4G2QEfRBIsKHemPmAzjHxgMe8zGH8
#Fencing