x="String" y="Python" d="+" c = "We can concatenation " + y + x + "with" + d + "Operator" print(c)
print “{0} {1} is {2} years old.” format(fname, lname, age)
x = ‘apples’ y = ‘lemons’ z = “In the basket are %s and %s” % (x,y)
x = "Python is " y = "awesome" z = x + y print(z)
LIST = [ 'a', 'b', 'c' ] text = ' '.join(x for x in LIST) print(text) # OUTPUT 'a b c'