Search for question
Question

Task 3: Write a program to add two lists index-wise. Create a new list that contains the 0th element from the first list and the last element from the other list, then the 1st element with the (last-1) element, and so on. Make the two lists have same number of elements. For example: given the following lists as fisxed input: list! ["M", "na", "i", "Ke"] = = list2 ["lly", "s", "me", "y"] the output should be:['My', 'name', 'is', 'Kelly']

Fig: 1