summaryrefslogtreecommitdiffhomepage
path: root/python3.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'python3.html.markdown')
-rw-r--r--python3.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/python3.html.markdown b/python3.html.markdown
index 6fce9bf7..e478e57f 100644
--- a/python3.html.markdown
+++ b/python3.html.markdown
@@ -52,7 +52,7 @@ Note: This article applies to Python 3 specifically. Check out the other tutoria
7 % 3 # => 1
# Exponentiation (x to the y'th power)
-2 ** 4 # => 16
+2**4 # => 16
# Enforce precedence with parentheses
(1 + 3) * 2 # => 8