diff options
author | Adam Bard <github@adambard.com> | 2015-12-05 13:20:50 +0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2015-12-05 13:20:50 +0700 |
commit | 69acce34c15c540bedf3dc040649d3c9abd3c52b (patch) | |
tree | e626142c07fa41695b959b606d4337929c9669ed | |
parent | c8475eacd742a1c8c6340121aa95f32f65421113 (diff) | |
parent | dc675a47edaeced79e13bf99d120c195a38b9ecf (diff) |
Merge pull request #1963 from aayushranaut/master
Removed confusing comments
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index f8f712d3..d8f18e9b 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' |