Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

fahrenheit to celsius in python

celsius = float(input("Enter temperature in celsius: "))
fahrenheit = (celsius * 9/5) + 32
print('%.2f Celsius is: %0.2f Fahrenheit' %(celsius, fahrenheit))
Source by beginnersbook.com #
 
PREVIOUS NEXT
Tagged: #fahrenheit #celsius #python
ADD COMMENT
Topic
Name
4+8 =