Re: [Tutor] about array

2006-12-26 Thread linda.s
On 12/26/06, Alan Gauld <[EMAIL PROTECTED]> wrote: > > "linda.s" <[EMAIL PROTECTED]> wrote > > a > > array([[ 0., 1., 2., 3., 4., 5.], > > [ 6., 7., 8., 9., 10., 11.], > > [ 12., 13., 14., 15., 16., 17.], > > [ 18., 19., 20., 21., 22., 23.], > > [ 24., 25., 26., 27., 28., 29.]]) > > OK, This s

Re: [Tutor] code in a folder

2006-12-26 Thread Alan Gauld
"linda.s" <[EMAIL PROTECTED]> wrote >I read an example code, with something like: > from a.b import * > I checked and found a is a folder name and b is python code in that > folder. I typed the above code in the IDLE and no error was > reported. > Why a.b works? This is Python "package" notatio

Re: [Tutor] about array

2006-12-26 Thread Alan Gauld
"linda.s" <[EMAIL PROTECTED]> wrote a > array([[ 0., 1., 2., 3., 4., 5.], > [ 6., 7., 8., 9., 10., 11.], > [ 12., 13., 14., 15., 16., 17.], > [ 18., 19., 20., 21., 22., 23.], > [ 24., 25., 26., 27., 28., 29.]]) OK, This sets up your test array. a[1:3,:-1:2] # a[i,j] f

Re: [Tutor] Sending email from windows python

2006-12-26 Thread Art Hollingsworth
I can think of at least four free ones for Windows off the top of my head. However hMailServer is easy to set up and use. I have used it myself in the past. I'll leave it as an exercise to you to find it's website. Also, learn to use Google. It is your friend. - Original Message - F

[Tutor] Oscar CTR Savaryn is out of the office.

2006-12-26 Thread oscar . ctr . savaryn
I will be out of the office starting 12/26/2006 and will not return until 01/08/2007. I will respond to your message when I return. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] code in a folder

2006-12-26 Thread linda.s
I read an example code, with something like: from a.b import * I checked and found a is a folder name and b is python code in that folder. I typed the above code in the IDLE and no error was reported. Why a.b works? ___ Tutor maillist - Tutor@python.org

Re: [Tutor] Sending email from windows python

2006-12-26 Thread ALAN GAULD
> How do we run sendmail from windows Searching Google for 'sendmail windows' gave me this: http://www.indigostar.com/sendmail.htm as the first link... > I found Xmail > > http://www.xmailserver.org/ But any smtp server will do just as well. Alan G. > > > how do we use sendmail to send mai