summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--python.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 01e5d481..ff4471e9 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -124,7 +124,8 @@ 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 later at some time, it may still be #good to know how it works.
+#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'
z = "The items in the basket are %s and %s" % (x,y)