3. What will be the output of the given python program?
strl = "welcome"
str2 = "to school"
str3=str1[:2]+str2[len(str2)-2:)
print(str3)
Answers
Answered by
8
Answer:
welcome to school
this is the output of the program
Similar questions