>>> from conversions import celsius_to_fahrenheit >>> round(celsius_to_fahrenheit(-31.2), 2) -24.16 >>> round(celsius_to_fahrenheit(-12.5), 2) 9.5 >>> round(celsius_to_fahrenheit(0.0), 2) 32.0 >>> round(celsius_to_fahrenheit(34.6), 2) 94.28