>>> b = a
won't work since b just points to a; however,
>>> b = a[:]
seems to work as long as the elements of a are not themselves
lists. In this last case even this does not work.
Is there some easy way to copy a into b as desired?
-- Lou Kates, louk@research.teleride.on.ca