From c806fc1f4d6e6cc6f33d7359b94a2afe37fca0fe Mon Sep 17 00:00:00 2001 From: Umar Qureshi <102142660+umar-mq@users.noreply.github.com> Date: Fri, 11 Jul 2025 12:42:15 +0500 Subject: [PATCH] Fix code typo (Change `%` to `**`) --- ...I_Python_Lesson_03_Operators,_Keywords_&_Variables.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/00_python_colab/03_operators_keywords_variables/Agentic_AI_Python_Lesson_03_Operators,_Keywords_&_Variables.ipynb b/00_python_colab/03_operators_keywords_variables/Agentic_AI_Python_Lesson_03_Operators,_Keywords_&_Variables.ipynb index 38293ea..ffaee09 100644 --- a/00_python_colab/03_operators_keywords_variables/Agentic_AI_Python_Lesson_03_Operators,_Keywords_&_Variables.ipynb +++ b/00_python_colab/03_operators_keywords_variables/Agentic_AI_Python_Lesson_03_Operators,_Keywords_&_Variables.ipynb @@ -335,7 +335,7 @@ "a / b = 3.3333333333333335\n", "a // b = 3\n", "a % b = 1\n", - "a % b = 1000\n" + "a ** b = 1000\n" ] } ], @@ -348,7 +348,7 @@ "print(\"a / b = \", a / b) # 3.3333333333333335\n", "print(\"a // b = \", a // b) # 3 Floor Division\n", "print(\"a % b = \", a % b) # 1 Modulus (remainder)\n", - "print(\"a % b = \", a ** b) # 1000 Exponentiation (10 * 10 * 10)" + "print(\"a ** b = \", a ** b) # 1000 Exponentiation (10 * 10 * 10)" ] }, { @@ -1133,4 +1133,4 @@ } } ] -} \ No newline at end of file +}