Fixed string formatting... my bad

This commit is contained in:
Nitsujed
2020-10-19 14:19:09 -04:00
parent 2f7af1dfd8
commit 9866c772f9

View File

@@ -4,7 +4,7 @@ from ..__init__ import Generator
def celsiustofahrenheit(maxTemp=100): def celsiustofahrenheit(maxTemp=100):
celsius = random.randint(-50, maxTemp) celsius = random.randint(-50, maxTemp)
fahrenheit = (celsius * (9/5)) +32 fahrenheit = (celsius * (9/5)) +32
problem = "Convert", str(celsius), "degrees Celsius to degrees Fahrenheit =" problem = "Convert " + str(celsius) + " degrees Celsius to degrees Fahrenheit = "
solution = str(fahrenheit) solution = str(fahrenheit)
return problem, solution return problem, solution