Computer Science, asked by Artymis21, 1 year ago

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 krishmitra6895
8

Answer:

welcome to school

this is the output of the program

Similar questions