diff options
| -rw-r--r-- | python.html.markdown | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/python.html.markdown b/python.html.markdown index 478804cd..63547bf6 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -101,6 +101,8 @@ not False  # => True  # Strings can be added too!  "Hello " + "world!"  # => "Hello world!" +# Strings can be added without using '+' +"Hello " "world!"  # => "Hello world!"  # ... or multiplied  "Hello" * 3  # => "HelloHelloHello" | 
