Write a python function to convert degree fahrenheit to degree celsius
Topic: Write a python function to convert degree fahrenheit to degree celsius
Solution
def celsius(fahrenheit): return (fahrenheit - 32) / 1.8
List all Python Programs
Solution
def celsius(fahrenheit): return (fahrenheit - 32) / 1.8