Question: Write a function interleave that accepts two strings. It should return a new string containing the 2 strings interwoven or zipped together. For example: interleave
Write a function interleave that accepts two strings. It should return a new string containing the strings interwoven or zipped together. For example:
interleavehiha # 'hhia'
interleaveaaazzz # 'azazaz'
interleavelzr'iad' # 'lizard' suppose we call interleavehino
zip the two strings together, giving you a list of tuples once you convert from the default zipobjecthnio
For each of the tuples in the list, join them together using join resulting in hnio Easiest if you use a list comp. You need to join EACH tuple.
Finally, join the items in the list together using join again resulting in 'hnio'
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
