Concatenating using space in Python

Concatenating using space in Python

When you enter string literals separated by a space, Python concatenates them

As a result, ‘Hello World’ becomes ‘HelloWorld’.

     print(“Hello” “world”)

     Output: Helloworld

Posted in PYTHON.

Leave a Reply

Your email address will not be published. Required fields are marked *