Creating a list:

Do all of today's work in the interactive Python shell. Creating a list: ... Step through the original list one element at a time. See if the element is in the new list. If not, add it. If so, do nothing. intersection(a, b)Returns a new list that is the common elements of a and b. ... longest_word_length(aList) Write a Python function that ... ................
................