SZanlongo
7/28/2016 - 6:38 PM

Celsius to Fahrenheit

Celsius to Fahrenheit

# Define a function to convert celsius to fahrenheit.
def c_to_f(c):
    return c * 9.0 / 5.0 + 32.0