Added kwargs to generator module and readme

This commit is contained in:
lukew3
2021-02-16 11:02:45 -05:00
parent ba6ffc4e6e
commit 9efffce9f5
116 changed files with 359 additions and 251 deletions

View File

@@ -16,4 +16,6 @@ def compoundInterestFunc(maxPrinciple=10000, maxRate=10, maxTime=10):
compound_interest = Generator(
"Compound Interest", 78,
"Compound interest for a principle amount of a dollars, b% rate of interest and for a time period of c years is = ",
"d dollars", compoundInterestFunc)
"d dollars",
compoundInterestFunc,
["maxPrinciple=10000", "maxRate=10", "maxTime=10"])