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, as0degrees Celsius is equivalent to32degrees Fahrenheit.