#!/usr/bin/env python
# coding: utf-8
# # Fahrenheit to Celsius in Python
# In[16]:
def convert(s):
f = float(s)
#formula Applied below
c = (f - 32) * 5/9
return c
celsius=input("Enter Values in Fahrenheit : ")
convert(celsius)
#clcoding.com
# In[ ]:
# In[ ]:
0 Comments:
Post a Comment