mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
yapf fix
This commit is contained in:
@@ -4,10 +4,12 @@ from .__init__ import *
|
||||
def celsiustofahrenheitFunc(maxTemp=100):
|
||||
celsius = random.randint(-50, maxTemp)
|
||||
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)
|
||||
return problem, solution
|
||||
|
||||
|
||||
celsius_to_fahrenheit = Generator("Celsius To Fahrenheit", 81,
|
||||
"(C +(9/5))+32=", "F", celsiustofahrenheitFunc)
|
||||
"(C +(9/5))+32=", "F",
|
||||
celsiustofahrenheitFunc)
|
||||
|
||||
Reference in New Issue
Block a user