How can be combine strings using operator in python?
Answers
Answered by
3
Answer:
The + operator lets you combine two or more strings in Python. This operator is referred to as the Python string concatenation operator. The + operator should appear between the two strings you want to merge.
Answered by
19
The + operator lets you combine two or more strings in Python. This operator is referred to as the Python string concatenation operator. The + operator should appear between the two strings you want to merge. This códe concatenates, or merges, the Python strings “Hello ” and “World”.
To concatenate strings, we use the + operator. Keep in mind that when we work with numbers, + will be an operator for addition, but when used with strings it is a joiníng operator.
Similar questions