summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJack Hooper <jackhooper@users.noreply.github.com>2014-11-12 02:04:50 +1100
committerJack Hooper <jackhooper@users.noreply.github.com>2014-11-12 02:04:50 +1100
commit38cf765079a3bd7ea8a2493857b7d2bc26d5fe30 (patch)
tree1ed84fb94b3f4a8c6fc7b09f6d7dee450fc07b39
parent4d85f161d8399f80e3c7ca93eb7ad8ed8018a327 (diff)
Apostrophe fixes as per Python 2 tutorial
-rw-r--r--python3.html.markdown6
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