concatenar en python code example
Example: concatenacion python
text1 = 'Hello '
text2 = 'World'
phrase = text1 + text2
print(phrase)
#Hello World
text1 = 'Hello '
text2 = 'World'
phrase = text1 + text2
print(phrase)
#Hello World