Write a python function to convert from Celcius to fahrenhiet
Topic: Write a python function to convert from Celcius to fahrenhiet
Solution
def cel_to_fah(celcius): return 9 * celcius / 5 + 32
List all Python Programs
Solution
def cel_to_fah(celcius): return 9 * celcius / 5 + 32