Question: Write a function zip2(seq1, seq1) that takes two sequences, seq1 and seq2. Write a function that zips the two sequences together, creating a list of

Write a function zip2(seq1, seq1) that takes two sequences, seq1 and seq2. Write a function that zips the two sequences together, creating a list of one element from each sequence. zip2() should stop after zipping the last element from the shorter list. E.g. zip2([1, 2, 3], ['a', 'b', 'c']) == [[1, 'a'], [2, 'b'], [3, 'c']] zip2([1, 2], ['a', 'b', 'c']) == [[1, 'a'], [2, 'b']

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!