################################################################## # Student contributions to the interest calculator # # You are free to add additional utility functions as you see fit, # but you must implement each of the following functions while # adhering to the specifications given in the project description ################################################################## #--------------------------------------------------------------------------------- def greeting(): pass # placeholder; you should remove this line #--------------------------------------------------------------------------------- def getRate(choices): pass # placeholder; you should remove this line #--------------------------------------------------------------------------------- def getPrincipal(limit): pass # placeholder; you should remove this line #--------------------------------------------------------------------------------- def computeBalance(principal, rate): pass # placeholder; you should remove this line #--------------------------------------------------------------------------------- def displayTable(principal, rate, balance): pass # placeholder; you should remove this line #--------------------------------------------------------------------------------- def askYesNo(prompt): pass # placeholder; you should remove this line #---------------------------------------------------------------------------------