30-Days-Of-Python icon indicating copy to clipboard operation
30-Days-Of-Python copied to clipboard

bugfix: fix 03_operators.md number error

Open Taki-Ta opened this issue 7 months ago • 0 comments

change file: 03_operators.md (line:78)

print('Exponentiation: ', 2 ** 3) # 9 it means 2 * 2 * 2

to

print('Exponentiation: ', 2 ** 3) # 8 it means 2 * 2 * 2

Taki-Ta avatar Jul 05 '24 06:07 Taki-Ta