Merge pull request #1050 from srirams6/master

[python3/en] Adding strings without + added.
This commit is contained in:
Geoff Liu 2015-04-22 15:45:21 -06:00
commit 04eed19763

View File

@ -101,6 +101,8 @@ False or True #=> True
# Strings can be added too! But try not to do this.
"Hello " + "world!" # => "Hello world!"
# Strings can be added without using '+'
"Hello " "world!" # => "Hello world!"
# A string can be treated like a list of characters
"This is a string"[0] # => 'T'