Example #1
0
 def menu(self):
   self.input =  input("1. Balance Inquiry \n2. Mini Statement \n3. Funds Transfer \n9. Exit \n")
   flow = Flow()
   flow.do(self.operations, self.input, "bank_flow")
 def menu(self):
   self.input =  input("1. Add \n2. Subtract \n3. Multiply \n4. Divide \n9. Exit\n")
   flow = Flow()
   flow.do(self.operations, self.input, "calculator_flow")