write a python function that joins the two strings and print it.
Answers
Answered by
7
Answer:
string1 = " heaven"
string2 = "is very beautiful"
print ("string1 + string2")
Answered by
5
Answer:
to join the two strings and print it, we use
CONCATENATE function.
- Use the + operator
- str1="Hello"
- str2="World"print ("String 1:",str1)
- print ("String 2:",str2)
- str=str1+str2.
- print("Concatenated two different strings:",str)
Similar questions
English,
1 month ago
Environmental Sciences,
1 month ago
Math,
4 months ago
Math,
10 months ago
Math,
10 months ago