Formula
To concatenate, or combine, two strings you can use the + operator.
with variable b into variable c
a = "Hello" b = "World"
c = a + b print(c)
To add a space between them, add a " "
c = a + " " + b print(c)
Previous
Python - Modify Strings
Next
Python - Format - Strings