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
Get step-by-step solutions from verified subject matter experts
