>
> ------------------------
> >>> 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
-------------------------
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to