#!/usr/bin/python # This is a list of some metallic # elements. metals = [ 'silver', 'gold', 'iron', 'zinc', 'aluminium', 'copper', 'magnesium', 'lead' ] # Make a new list that is almost # identical to the metals list: the new # contains the same items, in the same # order, except that it does *NOT* # contain the item 'copper'. # Print the new list.