Example & Tutorial understanding programming in easy ways.

How we can add two string in Python ?

In other programming language, there are many Build-In function to do this.

-But in Python we can add two string directly by the '+' operator.

program:

s1="My"

s2="String"

print(s1+s2)

output:

MyString

Read More →