Are there something like "Effective Python"?

2006-06-01 Thread Mike Meng
Hi all, I just finished reading Learning Python 3rd ed, and am doing my first Python application, which retrieves and process text and XML documents from Web. Python helped me to write the application in a few hours, I'm very happy with its productivity. But the performance is not satisfacto

Re: Are there something like "Effective Python"?

2006-06-01 Thread Luis M. González
Mike Meng wrote: > Hi all, > I just finished reading Learning Python 3rd ed, and am doing my > first Python application, which retrieves and process text and XML > documents from Web. Python helped me to write the application in a few > hours, I'm very happy with its productivity. But the pe

Re: Are there something like "Effective Python"?

2006-06-01 Thread Ray
I think Aahz stated somewhere that he was workign on Effective Python. I'm not sure if it's an ongoing plan or it's been canned though? Mike Meng wrote: > Hi all, > I just finished reading Learning Python 3rd ed, and am doing my > first Python application, which retrieves and process text a

Re: Are there something like "Effective Python"?

2006-06-01 Thread BartlebyScrivener
>> I just finished reading Learning Python 3rd ed, For real? I thought there was only a 2nd edition. http://www.oreilly.com/catalog/lpython2/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Are there something like "Effective Python"?

2006-06-02 Thread Mike Meng
Bart, I'm sorry, it's 2nd edtion. Thanks. mike BartlebyScrivener 写道: > >> I just finished reading Learning Python 3rd ed, > > For real? I thought there was only a 2nd edition. > > http://www.oreilly.com/catalog/lpython2/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Are there something like "Effective Python"?

2006-06-02 Thread Brian
You might want to give this site a look: http://www.livewires.org.uk/python/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Are there something like "Effective Python"?

2006-06-02 Thread Aahz
In article <[EMAIL PROTECTED]>, Mike Meng <[EMAIL PROTECTED]> wrote: > > I just finished reading Learning Python 3rd ed, and am doing my >first Python application, which retrieves and process text and XML >documents from Web. Python helped me to write the application in a few >hours, I'm very

Re: Are there something like "Effective Python"?

2006-06-02 Thread Aahz
In article <[EMAIL PROTECTED]>, Mike Meng <[EMAIL PROTECTED]> wrote: > >For example, one of my friends read my program and suggest me to >move the re.compile() out of a for-loop, since the regular pattern is >fixed, and re.compile() is slow. I want to find more such advice, where >can I find th

Re: Are there something like "Effective Python"?

2006-06-02 Thread gene tani
Mike Meng wrote: > Hi all, > I just finished reading Learning Python 3rd ed, and am doing my > first Python application, which retrieves and process text and XML > documents from Web. Python helped me to write the application in a few > hours, I'm very happy with its productivity. But the p