30-Days-Of-Python
30-Days-Of-Python copied to clipboard
bugfix: fix 03_operators.md number error
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