How to convert Celsius to Fahrenheit using python

celsius = float(input("Enter temperature in Celsius: ")) fahrenheit = (celsius *

Created By :

Created On :

23-03-2024

How to convert Celsius to Fahrenheit using python

Updated on 24, February 2024 293 Enrolled
how to

Step 1

celsius = float(input("Enter temperature in Celsius: "))

fahrenheit = (celsius * 9/5) + 32

print("Temperature in Fahrenheit:", fahrenheit)


line

Copyrights © 2024 letsupdateskills All rights reserved