Run
# Function that converts C to F def celsiusToFahrenheit(c): return (c * 9 / 5) + 32 if __name__ == "__main__": # Given Celsius c = 37 # Convert Celsius to Fahrenheit f = celsiusToFahrenheit(c) print(f"{c} Celsius is equal {f} Fahrenheit")
Output