how to concatenate two strings to a third string in python code example
Example: python concatenate strings
x = ‘apples’
y = ‘lemons’
z = “In the basket are %s and %s” % (x,y)
x = ‘apples’
y = ‘lemons’
z = “In the basket are %s and %s” % (x,y)