Example #1
0
def addHistroy(problem):
    addHistory = open("history.txt", "a")
    addHistory.write(problem + "\n")
    from choice import choose
    choose()
Example #2
0
 def openHistory():
     print(viewHistory.read())
     from choice import choose
     choose()
def divideHistroy(problem):
    divideHistory = open("history.txt", "a")
    divideHistory.write(problem + "\n")
    from choice import choose
    choose()
def subtractHistroy(problem):
    subtractHistory = open("history.txt", "a")
    subtractHistory.write(problem + "\n")
    from choice import choose
    choose()
Example #5
0
def multiplyHistroy(problem):
    mulHistory = open("history.txt", "a")
    mulHistory.write(problem + "\n")
    from choice import choose
    choose()