On Mar 26, 4:04 pm, "Michał Bentkowski" <[EMAIL PROTECTED]> wrote:
> Why does python create a reference here, not just copy the variable?
>
> >>> j=range(0,6)
> >>> k=j
> >>> del j[0]
> >>> j
> [1, 2, 3, 4, 5]
> >>> k
>
> [1, 2, 3, 4, 5]
>
> Shouldn't k remain the same?

http://www.effbot.org/zone/python-list.htm
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to