Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 320 Bytes

File metadata and controls

7 lines (5 loc) · 320 Bytes

Write a function temperature_convert(celsius: float) -> float that converts a temperature from Celsius to Fahrenheit. To calcaulte this conversion, we multiple the celsius value by 9/5 then add 32.

For example:

  • temperature_convert(0.0) → 32.0, as 0 degrees Celsius is equivalent to 32 degrees Fahrenheit.