Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python code to convert celsius to fahrenheit

c=  int(input(" Temperature in Centigrade: "))
f= (9/5*(int(c))) +32
print(" Temperature in Fahrenheit: ", f)
Source by www.pythonforbeginners.com #
 
PREVIOUS NEXT
Tagged: #python #code #convert #celsius #fahrenheit
ADD COMMENT
Topic
Name
4+5 =