Many of you know how to concatenate string literals in python. It is almost as simple to add + operator between the string literals to invoke string concatenation.

But, here we are going to discus what would happen in python if we don’t write + operator between string literals just written below.
![]()
In the above case, python automatically concatenates adjacent string literals of any kind.

But if we put comma between these two, it will result in a tuple but not string.

🙂 Happy Learning !Â
Â