Python Tutorials
Basic

Data Structure and Data Types

String

List

Tuple

Set

Dictionary

Functions / Methods

Advance

Exception Handling

Python String Concatenation


String Concatenation

Using the plus + operator, you can combine two string texts.

Example
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.