python recommended string concatenation code example
Example 1: how to concat strings in python
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)