1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 21:49:22 +01:00

Merge pull request #856 from jackhooper/master

More apostrophe fixes
This commit is contained in:
Levi Bostian 2014-11-11 11:33:38 -06:00
commit db32ddc620
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ to Python 2.x. For Python 3.x, take a look at the Python 3 tutorial.
# 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
"""
@ -55,7 +55,7 @@ to Python 2.x. For Python 3.x, take a look at the Python 3 tutorial.
# 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

View File

@ -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