Answers for "concatenacion python"

0

concatenacion python

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

#Hello World
Posted by: Guest on February-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language