Computer Science, asked by srinija12169, 6 months ago

write a python program to perform string concatenation​

Answers

Answered by Anonymous
14

Answer:

String Concatenation

x = "Python is " y = "awesome" z = x + y. print(z) ...

Merge variable a with variable b into variable c : a = "Hello" b = "World" c = a + b. ...

To add a space between them, add a " " : a = "Hello" b = "World" c = a + " " + b. ...

x = 5. y = 10. print(x + y) Try it Yourself »

x = 5. y = "John" print(x + y) Try it Yourself

Similar questions