You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""PYTHON DATA STRUCTURE EXERCISE FOR BEGINNERS"""
#Create a list by picking an odd-index items from the first list and even ide items from the second
#Given two lists,l1 and l2 write a program to create a third list l3 by picking an odd-index element from the list l1 and even ndex element from the list l2.