concatenar python code example
Example 1: string concatenation in python
x="String"
y="Python"
d="+"
c = "We can concatenation " + y + x + "with" + d + "Operator"
print(c)
Example 2: concatenacion python
text1 = 'Hello '
text2 = 'World'
phrase = text1 + text2
print(phrase)
#Hello World