Computer Science, asked by aditimaheshwari568, 4 months ago

write a phython function that joint two strings and a print it​

Answers

Answered by persiashree
1

Answer:

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