Using Operators with Strings

Python supports concatenating strings using the addition operator:

helloworld = "hello" + " " + "world"
print(helloworld)

Trinket.io on-line Python compiler