Computer Science, asked by yashkinggamer7, 4 months ago

write a python function that joins the two strings and print it.​

Answers

Answered by purveshKolhe
7

Answer:

string1 = " heaven"

string2 = "is very beautiful"

print ("string1 + string2")

Answered by WhotDeFak
5

Answer:

to join the two strings and print it, we use

CONCATENATE function.

  1. Use the + operator
  2. str1="Hello"
  3. str2="World"print ("String 1:",str1)
  4. print ("String 2:",str2)
  5. str=str1+str2.
  6. print("Concatenated two different strings:",str)
Similar questions