Wrong list again

On Thu, Sep 1, 2011 at 4:10 PM, Christopher King <g.nius.ck@gmail.com> wrote:
------------------------
>>> list = [3,]
>>> a = list
>>> list[0] = 6
>>> a[0]
3
-------------------------
Slight error in my code. It should be.
------------------------
>>> list = [3,]
>>> a = list
>>> list[0] = 6
>>> a[0]
6
-------------------------