Re: Beginner's assignment question

2008-03-02 Thread Schizoid Man
Gabriel Genellina wrote: > En Sun, 02 Mar 2008 08:25:49 -0200, Schizoid Man <[EMAIL PROTECTED]> escribi�: > >> Lorenzo Gatti wrote: >>> On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: As in variable assignment, not homework assignment! :) I understand the first line but n

Re: Beginner's assignment question

2008-03-02 Thread castironpi
On Mar 2, 4:49 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Sun, 02 Mar 2008 08:25:49 -0200, Schizoid Man <[EMAIL PROTECTED]> escribi�: > > > > > > > Lorenzo Gatti wrote: > >> On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: > >>> As in variable assignment, not homework assignm

Re: Beginner's assignment question

2008-03-02 Thread Gabriel Genellina
En Sun, 02 Mar 2008 08:25:49 -0200, Schizoid Man <[EMAIL PROTECTED]> escribi�: > Lorenzo Gatti wrote: >> On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: >>> As in variable assignment, not homework assignment! :) >>> >>> I understand the first line but not the second of the following cod

Re: Beginner's assignment question

2008-03-02 Thread Schizoid Man
Lorenzo Gatti wrote: > On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: >> As in variable assignment, not homework assignment! :) >> >> I understand the first line but not the second of the following code: >> >> a, b = 0, 1 >> a, b = b, a + b >> >> In the first line a is assigned 0 and b

Re: Beginner's assignment question

2008-03-01 Thread castironpi
On Mar 1, 10:07 am, Lorenzo Gatti <[EMAIL PROTECTED]> wrote: > On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: > > > As in variable assignment, not homework assignment! :) > > > I understand the first line but not the second of the following code: > > > a, b = 0, 1 > > a, b = b, a + b >

Re: Beginner's assignment question

2008-03-01 Thread Lorenzo Gatti
On Mar 1, 3:39 pm, Schizoid Man <[EMAIL PROTECTED]> wrote: > As in variable assignment, not homework assignment! :) > > I understand the first line but not the second of the following code: > > a, b = 0, 1 > a, b = b, a + b > > In the first line a is assigned 0 and b is assigned 1 simultaneously. >

Re: Beginner's assignment question

2008-03-01 Thread Colin J. Williams
Schizoid Man wrote: > As in variable assignment, not homework assignment! :) > > I understand the first line but not the second of the following code: > > a, b = 0, 1 > a, b = b, a + b > > In the first line a is assigned 0 and b is assigned 1 simultaneously. > > However what is the sequence of

Beginner's assignment question

2008-03-01 Thread Schizoid Man
As in variable assignment, not homework assignment! :) I understand the first line but not the second of the following code: a, b = 0, 1 a, b = b, a + b In the first line a is assigned 0 and b is assigned 1 simultaneously. However what is the sequence of operation in the second statement? I;m