Which symbol used to string concetanation
Answers
Answered by
3
Answer:
ampersand symbol
Explanation:
The ampersand symbol is the recommended concatenation operator. It is used to bind a number of string variables together, creating one string from two or more individual strings.
Answered by
0
Answer:
Addition symbol
Explanation:
String concatenation is done using + symbol
Ex:
string_1 = "I love "
string_2 = "Python"
concat = string_1 + string_2
print(concat)
Result: I love Python
Similar questions