diff --git a/mathTricks.py b/mathTricks.py index 9e12cea..66db854 100644 --- a/mathTricks.py +++ b/mathTricks.py @@ -46,7 +46,7 @@ def divide(num1,num2): firstNum = random.randint(-100,100) secondNum = random.randint(-100,100) opNum = random.randint(0,3) - print("{}) {} {} {} = ".format(i+1,firstNum,operators[opNum],secondNum)) + print("{}. {} {} {} = ".format(i+1,firstNum,operators[opNum],secondNum)) answer = float(input("")) funcDict = {'+' : add(firstNum,secondNum), @@ -80,4 +80,4 @@ def divide(num1,num2): print("See you soon") time.sleep(2) -input("Press enter to exit ") \ No newline at end of file +input("Press enter to exit ")