mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-24 06:53:08 +03:00
Merge pull request #1050 from srirams6/master
[python3/en] Adding strings without + added.
This commit is contained in:
commit
04eed19763
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user