write a phython function that joint two strings and a print it
Answers
Answered by
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
Computer Science,
1 month ago
English,
1 month ago
Political Science,
1 month ago
Geography,
4 months ago
Hindi,
4 months ago
Chemistry,
10 months ago
Math,
10 months ago
English,
10 months ago