summaryrefslogtreecommitdiffhomepage
path: root/python.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2016-01-08 14:35:53 +0800
committerAdam <adam@adambard.com>2016-01-08 14:35:53 +0800
commitef28fa69775ba064dfed212e034b5caae7edb7b9 (patch)
treed3a30be274822754414b438fe9b9c102edc09630 /python.html.markdown
parent8ad537a9ba9889234a63c5a38caeab3e225856e4 (diff)
parent04166190367a93236e7173901dff7ae9661736ba (diff)
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'python.html.markdown')
-rw-r--r--python.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index f8f712d3..13cb25e3 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -124,7 +124,7 @@ not False # => True
"This is a string"[0] # => 'T'
#String formatting with %
-#Even though the % string operator will be deprecated on Python 3.1 and removed
+#Even though the % string operator will be deprecated on Python 3.1 and removed
#later at some time, it may still be good to know how it works.
x = 'apple'
y = 'lemon'
@@ -726,6 +726,7 @@ print say(say_please=True) # Can you buy me a beer? Please! I am poor :(
* [Python Module of the Week](http://pymotw.com/2/)
* [A Crash Course in Python for Scientists](http://nbviewer.ipython.org/5920182)
* [First Steps With Python](https://realpython.com/learn/python-first-steps/)
+* [Fullstack Python](https://www.fullstackpython.com/)
### Dead Tree