From 365bbcfe018c50b221fb50a4f364f084faac2cab Mon Sep 17 00:00:00 2001 From: Wang ChengMeng <79295644+cmw-creator@users.noreply.github.com> Date: Thu, 4 Jun 2026 08:49:08 +0800 Subject: [PATCH] fix: correct comment typo in Day 3 example Comment says '3' but variable b = 2 --- 03_Day_Operators/day-3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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