Concatenacion Python

text1 = 'Hello '
text2 = 'World'
phrase = text1 + text2
print(phrase)

#Hello World
Ian Selley