Patch_Hawk / patchhawk /data /benign /misc_temp.py
RAMCr7's picture
Final patch
58f6308
raw
history blame contribute delete
200 Bytes
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