Question: Python Let a,b be 2 lists of integer numbers. The lists are of the same length ( can be also empty). We want to build

 Python Let a,b be 2 lists of integer numbers. The listsare of the same length ( can be also empty). We want

Python Let a,b be 2 lists of integer numbers. The lists are of the same length ( can be also empty). We want to build a new list in which we take every time the next element from a, then the next element from b. We have the function unify(a,b) to do this. Examples: unify([],[])==[] unify([21, 11],[-5, 37])== [21, -5, 11, 37] unify([90, 70, 35, 36],[-90,-70, -35, -36])==[90,-90, 70, -70, 35, -35, 36,-36] Complete the missing code: def unify(a, b): return Requirements : must complete the code ONLY in the designated place AFTER the word return. Hint : Remember what we've done in Semi-Exam to create a list with duplicated elements

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!