Welcome To Python String Concatenation #in English
String concatenation means add strings together.
Use the + character to add a variable to another variable:
Example
x = "Python is "
y = "awesome"
z = x + y
print(z)
Try It Yourself
Example 2
Merge variable a with variable b into variable c:
a = "Hello"
b = "World"
c = a + b
print(c)
Try It Yourself
Subscribe for more latest videos of Python