diff --git a/calculator.py b/calculator.py index 2550c49..c40020d 100644 --- a/calculator.py +++ b/calculator.py @@ -17,7 +17,7 @@ elif o[0] == '*': out = a * b elif o[0] == '/': - out = a//b + out = a/b print("Output : ",out) else: print("Error : Invalid Operator")