diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2014-11-11 17:42:28 -0800 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2014-11-11 18:06:19 -0800 |
commit | 9d8d8710053a73e5099483f9e07c9d789cec73e5 (patch) | |
tree | 7da03b2bef2c7fa5e9a8ea0ddc4acf919bce980f /python3.html.markdown | |
parent | e784f52d33475b0cba059a0c07ad01b0e63578a9 (diff) | |
parent | ad951f2615175b917b7410e667ef91d119468c5a (diff) |
Merge
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index e478e57f..0b4feccc 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -7,7 +7,7 @@ contributors: filename: learnpython3.py --- -Python was created by Guido Van Rossum in the early 90's. It is now one of the most popular +Python was created by Guido Van Rossum in the early 90s. It is now one of the most popular languages in existence. I fell in love with Python for its syntactic clarity. It's basically executable pseudocode. @@ -20,7 +20,7 @@ Note: This article applies to Python 3 specifically. Check out the other tutoria # Single line comments start with a number symbol. """ Multiline strings can be written - using three "'s, and are often used + using three "s, and are often used as comments """ @@ -51,7 +51,7 @@ 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) +# Exponentiation (x to the yth power) 2**4 # => 16 # Enforce precedence with parentheses |