diff options
author | Vipul Sharma <vipulsharma936@gmail.com> | 2015-10-29 15:23:37 +0530 |
---|---|---|
committer | Vipul Sharma <vipulsharma936@gmail.com> | 2015-10-29 15:23:37 +0530 |
commit | cdd64ecee34af20ed101ba5dc8d7dc73a8189c15 (patch) | |
tree | 7a3b6b9ea9cde01b5398a8e8f8007ad2962da19a /python.html.markdown | |
parent | a6eb459b611b67132c76e34095afd87a5aada78c (diff) |
80 char and proper commenting
Diffstat (limited to 'python.html.markdown')
-rw-r--r-- | python.html.markdown | 3 |
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) |