Using the plus + operator, you can combine two string texts.
+
a = "Hello " b = "world" print(a + b)
Hello world
As you can see in the output, we concatenate two string texts using the plus (+) operator.