Updated the Variable object to reconize 'k' as an installment variable type. Updated the main program's interactive UI.

This commit is contained in:
2020-04-22 02:32:50 -05:00
parent e360323490
commit d43f8ef6be
3 changed files with 35 additions and 18 deletions
+3 -1
View File
@@ -19,7 +19,9 @@ class Variable:
"i" : "Interest",
"I" : "Interest",
"n" : "Time",
"N" : "Time"
"N" : "Time",
"k" : "Installment",
"K" : "Installment"
}
def __init__(self, name, type, starting_point = 0, ending_point = 0):