mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
yapf edits
This commit is contained in:
@@ -7,7 +7,9 @@ def simpleInterestFunc(maxPrinciple=10000, maxRate=10, maxTime=10):
|
||||
c = random.randint(1, maxTime)
|
||||
d = (a * b * c) / 100
|
||||
|
||||
problem = "Simple interest for a principle amount of " + str(a) + " dollars, " + str(
|
||||
b) + "% rate of interest and for a time period of " + str(c) + " years is = "
|
||||
problem = "Simple interest for a principle amount of " + str(
|
||||
a) + " dollars, " + str(
|
||||
b) + "% rate of interest and for a time period of " + str(
|
||||
c) + " years is = "
|
||||
solution = round(d, 2)
|
||||
return problem, solution
|
||||
|
||||
Reference in New Issue
Block a user