On Mon, 2006-06-12 at 09:37 -0400, Kermit Rose wrote:
>
> From: Python
> Date: 06/11/06 22:59:38
> To: Kermit Rose
> Cc: Tutor Python
> Subject: Re: [Tutor] assignment statements in python
>
>
> The basic python objects: numbers, strings, and tuples are
>> Assignment in Python is not a copy, it is a name binding. Assignment
>> creates a name for an object. If you assign the same object to two
>> names, they both are bound to the same thing. If the object is mutable,
>> like a list, changes to the object will be seen regardless of which
>> name
On Sun, 2006-06-11 at 22:14 -0400, Kermit Rose wrote:
> Message: 1
> Date: Sun, 11 Jun 2006 06:58:39 -0400
> From: Kent Johnson <[EMAIL PROTECTED]>
> Subject: Re: [Tutor] buggy bug in my program
> Cc: tutor@python.org
>
> Assignment in Python is not a copy, it is a name binding. Assignment
> cr
Kermit Rose wrote:
>
> Message: 1
> Date: Sun, 11 Jun 2006 06:58:39 -0400
> From: Kent Johnson <[EMAIL PROTECTED]>
> Subject: Re: [Tutor] buggy bug in my program
> Cc: tutor@python.org
>
> Assignment in Python is not a copy, it is a name binding. Assignment
> creates a name for an object. If y
On Sun, 2006-06-11 at 22:14 -0400, Kermit Rose wrote:
> Message: 1
> Date: Sun, 11 Jun 2006 06:58:39 -0400
> From: Kent Johnson <[EMAIL PROTECTED]>
> Subject: Re: [Tutor] buggy bug in my program
> Cc: tutor@python.org
>
> Assignment in Python is not a copy, it is a name binding. Assignment
> cr
Message: 1
Date: Sun, 11 Jun 2006 06:58:39 -0400
From: Kent Johnson <[EMAIL PROTECTED]>
Subject: Re: [Tutor] buggy bug in my program
Cc: tutor@python.org
Assignment in Python is not a copy, it is a name binding. Assignment
creates a name for an object. If you assign the same object to two
name