Re: Finally started on python..

2007-05-13 Thread Gabriel Genellina
En Sat, 12 May 2007 14:09:06 -0300, Roger Gammans [EMAIL PROTECTED] escribió: Having known about python since around the turn of the century , I finally found a (actually two) reason to learn it. Welcome! Does the python communitity have something like Perl's CPAN and is there already

Re: Finally started on python..

2007-05-13 Thread John Machin
On May 13, 3:09 am, Roger Gammans [EMAIL PROTECTED] wrote: 2) I've ended up coding a new wrapper for reading in data structures from XML files (it wraps xml.sax) so that ctor are call on each end tag with the XML Objects contents. is there already something there taht does this Check out

Finally started on python..

2007-05-12 Thread Roger Gammans
Hi, Having known about python since around the turn of the century , I finally found a (actually two) reason to learn it. Python seems to have moved on a little since the 1.5.2 release covered in the reference book (Essential Python) I bought way back when so I could learn it when the time

Re: Finally started on python..

2007-05-12 Thread Marc 'BlackJack' Rintsch
In [EMAIL PROTECTED], Roger Gammans wrote: I found myself using this sort of code a bit in one of my recent scripts class Something: def Entries(self): sort=self._data.keys() sort.sort() for i in sort: yield i IS this preferable to