Skip to content

Commit 8a3e7c3

Browse files
committedJan 21, 2025
Resolving issue Asabeneh#640
Fixed the comment by changing 9 to 8 for exponentiation 2**3
1 parent 8ed841e commit 8a3e7c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎03_Day_Operators/03_operators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ print('Division: ', 7 / 2) # 3.5
7575
print('Division without the remainder: ', 7 // 2) # 3, gives without the floating number or without the remaining
7676
print ('Division without the remainder: ',7 // 3) # 2
7777
print('Modulus: ', 3 % 2) # 1, Gives the remainder
78-
print('Exponentiation: ', 2 ** 3) # 9 it means 2 * 2 * 2
78+
print('Exponentiation: ', 2 ** 3) # 8 it means 2 * 2 * 2
7979
```
8080

8181
**Example:Floats**

0 commit comments

Comments
 (0)
Please sign in to comment.