Answer:
I think make a copy maybe
Explanation:
s1='abc'
s2='wxyz'
length=len(s1)
s3=''
for i in range(length):
s3+=s1[i]+s2[i]
print(s3)
easyy
Explanation:10 smaple runs and 2
Top to down approach