Re: [Tutor] Plotting a Linear Equation

2010-09-24 Thread Greg
On Thu, Sep 23, 2010 at 10:51 PM, Corey Richardson wrote: > Hello tutors. Probably the wrong mailing list, but someone might know. > I want to use matplotlib (or similar) to plot an equation in > slope-intercept (y=mx+b) or standard form (Ax + By = C). As far as I've read > and tested, you can o

Re: [Tutor] pure function problem

2010-09-24 Thread David Hutto
On Fri, Sep 24, 2010 at 1:43 AM, Roelof Wobben wrote: > > > > >> From: st...@pearwood.info >> To: tutor@python.org >> Date: Fri, 24 Sep 2010 13:00:40 +1000 >> Subject: Re: [Tutor] pure function problem >> >> Roelof, please learn to delete unnecessarily quot

Re: [Tutor] pure function problem

2010-09-24 Thread Dave Angel
On 2:59 PM, Roelof Wobben wrote: From: st...@pearwood.info On Fri, 24 Sep 2010 06:20:25 am Roelof Wobben wrote: time =ijd() [...] print time(uitkomst) Why are you calling time as a function, when it is a tijd instance? Hello Steve, I found t

Re: [Tutor] pure function problem

2010-09-24 Thread Roelof Wobben
> Date: Fri, 24 Sep 2010 06:29:03 -0400 > From: da...@ieee.org > To: rwob...@hotmail.com > CC: tutor@python.org > Subject: Re: [Tutor] pure function problem > > On 2:59 PM, Roelof Wobben wrote: >> >> >> >>> From: s

Re: [Tutor] Plotting a Linear Equation

2010-09-24 Thread kb1pkl
-Original Message- From: Greg To: tutor Sent: Fri, Sep 24, 2010 3:29 am Subject: Re: [Tutor] Plotting a Linear Equation On Thu, Sep 23, 2010 at 10:51 PM, Corey Richardson wrote:  Hello tutors. Probably the wrong mailing list, but someone might know. I want to use matplotlib (or

Re: [Tutor] list.append(x) but at a specific 'i'

2010-09-24 Thread Norman Khine
On Wed, Sep 22, 2010 at 9:47 PM, Steven D'Aprano wrote: > On Wed, 22 Sep 2010 08:30:09 am Norman Khine wrote: > >> hello, how do i extend a python list but from a given [i], > > Do you mean to modify the list in place, like append() and extend() do, > or do you mean to create a new list, like + do