We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0905521 commit 7458e15Copy full SHA for 7458e15
Codes/calculator.py
@@ -20,7 +20,7 @@ def remainder(a,b):
20
b = input()
21
22
#Suppose user enters 3 and 5, Then a = "3", b = "5", "3" and "5" are strings
23
-#But we need a = 3, and not "3" and b = 5, and not "5", so it becomes integers and we can perform arithmetic operations.
+#But we need a = 3, and not "3" and b = 5, and not "5", so that they become integers and then we can perform arithmetic operations.
24
25
a = int(a) # This line converts whatever is stored in a to INTEGER Type and assigns that value to a.
26
b = int(b) # This line converts whatever is stored in b to INTEGER Type and assigns that value to b again.
0 commit comments