diff options
author | jmaud <maudlin.johnathan@gmail.com> | 2014-10-15 11:34:50 -0400 |
---|---|---|
committer | jmaud <maudlin.johnathan@gmail.com> | 2014-10-15 11:34:50 -0400 |
commit | fe277959606857f2690b4d6dd224fffc6a550d34 (patch) | |
tree | 1f4fe866661f06bae6f5fcc702b9450da32e9627 /python3.html.markdown | |
parent | 54835f209475cf6ace7fcd7fab8140ecedcec340 (diff) | |
parent | bc6a21835f862a4c8b386fce48aebd2cdd1a5232 (diff) |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Merge changes
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index a94f4eae..e478e57f 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -3,6 +3,7 @@ language: python3 contributors: - ["Louie Dinh", "http://pythonpracticeprojects.com"] - ["Steven Basart", "http://github.com/xksteven"] + - ["Andre Polykanine", "https://github.com/Oire"] filename: learnpython3.py --- @@ -50,6 +51,9 @@ Note: This article applies to Python 3 specifically. Check out the other tutoria # Modulo operation 7 % 3 # => 1 +# Exponentiation (x to the y'th power) +2**4 # => 16 + # Enforce precedence with parentheses (1 + 3) * 2 # => 8 |