Skip to content

Commit 7458e15

Browse files
authored
Update calculator.py
1 parent 0905521 commit 7458e15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Codes/calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def remainder(a,b):
2020
b = input()
2121

2222
#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.
23+
#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.
2424

2525
a = int(a) # This line converts whatever is stored in a to INTEGER Type and assigns that value to a.
2626
b = int(b) # This line converts whatever is stored in b to INTEGER Type and assigns that value to b again.

0 commit comments

Comments
 (0)