Advertisements
Advertisements
Question
What will be the output of the given python program?
str1 = "welcome"
str2 = "to school"
str3=str1[:2]+str2[len(str2)-2:]
print(str3)
Short Answer
Solution
output:
weol
shaalaa.com
Programs Using Strings
Is there an error in this question or solution?