From eabad65534ffe422e8114da9ed2930af8affda0d Mon Sep 17 00:00:00 2001 From: Yusuf_azel <129052436+Yusufali2004@users.noreply.github.com> Date: Tue, 14 Oct 2025 16:53:22 +0530 Subject: [PATCH] Updated calculator.py --- calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")