celsius_to_fahrenheit(celsius) that converts a Celsius temperature to Fahrenheit using the formula F = C * 9/5 + 32, rounded to 1 decimal place. Include a one-line docstring describing what the function does (the docstring itself is not graded on wording, but the function must have one).celsius_to_fahrenheit(0)
32.0
0C is exactly 32F.
celsius_to_fahrenheit(37)
98.6
37 * 9/5 + 32 = 98.6.
A docstring is a string literal right after the def line, e.g. """Converts Celsius to Fahrenheit."""
Use round(value, 1).