Computer Science, asked by chauhansangeeta307, 7 months ago

7. To join two strings, we use
the operator.
Ο Ο Ο
+
O
O #​

Answers

Answered by kanikasingh15
0

Answer:

pls explain your options they are not clear

Answered by gaganadithyareddy9
0

Answer:

In python, to join two string we use '+' operator...

Example:

a = "Hello "

b = "World"

print(a+b)

Output:

Hello World

Similar questions