Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

celsius to fahrenheit in python

def farh(cel):
    return (cel *(9/5)) + 32
  while True:
c = int(input("Enter celcius to convert in farhrenhite :"))
f = farh(c)
print("Fahreheit Temperature is " + str(f))
 
PREVIOUS NEXT
Tagged: #celsius #fahrenheit #python
ADD COMMENT
Topic
Name
2+4 =