diff --git a/03_Day_Operators/day-3.py b/03_Day_Operators/day-3.py index cbf7e5a1d..1f03c5757 100644 --- a/03_Day_Operators/day-3.py +++ b/03_Day_Operators/day-3.py @@ -25,7 +25,7 @@ # Declaring the variable at the top first a = 3 # a is a variable name and 3 is an integer data type -b = 2 # b is a variable name and 3 is an integer data type +b = 2 # b is a variable name and 2 is an integer data type # Arithmetic operations and assigning the result to a variable total = a + b