________ operators is used to concatenate two string in python
Answers
Answered by
8
Using + Operator
It's very easy to use + operator for string concatenation. This operator can be used to add multiple strings together. However, the arguments must be a string. Note: Strings are immutable, therefore, whenever it is concatenated, it is assigned to a new variable.
Answered by
1
The addition operator + is also known as a concatenation operator when applied on two python strings.
Similar questions