Computer Science, asked by bappa7240, 7 months ago

Which symbol used to string concetanation

Answers

Answered by aditi14314
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 kumarshikhar597
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