python string concatination function code example
Example 1: Python - String Concatenation
a = "Hello"
b = "World"
c = a + b
print(c)
Example 2: python concatenate strings
print “{0} {1} is {2} years old.” format(fname, lname, age)
a = "Hello"
b = "World"
c = a + b
print(c)
print “{0} {1} is {2} years old.” format(fname, lname, age)