1)Create a list of the odd numbers between 1 and n (include 1 as well as n -- if it's odd-- in the list). Associate the list with the variable odds .
2)Given the list my_list containing integers, create a list consisting of all the even elements of my_list . Associate the new list with the variable new_list .
3)Create a dictionary that maps the first n counting numbers to their squares. Associate the dictionary with the variable squares .