From 8a3e7c3c7619d489368aa8eff892c457bb6d1cd6 Mon Sep 17 00:00:00 2001 From: AnnieJohnson25 Date: Tue, 21 Jan 2025 16:48:27 -0500 Subject: [PATCH] Resolving issue #640 Fixed the comment by changing 9 to 8 for exponentiation 2**3 --- 03_Day_Operators/03_operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Day_Operators/03_operators.md b/03_Day_Operators/03_operators.md index 0fcfeb994..987a11807 100644 --- a/03_Day_Operators/03_operators.md +++ b/03_Day_Operators/03_operators.md @@ -75,7 +75,7 @@ print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, gives without the floating number or without the remaining print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, Gives the remainder -print('Exponentiation: ', 2 ** 3) # 9 it means 2 * 2 * 2 +print('Exponentiation: ', 2 ** 3) # 8 it means 2 * 2 * 2 ``` **Example:Floats**