Spaces:
Running
Running
| def celsius_to_fahrenheit(c): | |
| """Convert Celsius to Fahrenheit.""" | |
| return (c * 9 / 5) + 32 | |
| def fahrenheit_to_celsius(f): | |
| """Convert Fahrenheit to Celsius.""" | |
| return (f - 32) * 5 / 9 | |
| def celsius_to_fahrenheit(c): | |
| """Convert Celsius to Fahrenheit.""" | |
| return (c * 9 / 5) + 32 | |
| def fahrenheit_to_celsius(f): | |
| """Convert Fahrenheit to Celsius.""" | |
| return (f - 32) * 5 / 9 | |