Re: How to parse this line of code manually

2007-08-29 Thread Davy
On Aug 28, 7:28 pm, Dustan <[EMAIL PROTECTED]> wrote: > On Aug 28, 2:59 am, "A.T.Hofkamp" <[EMAIL PROTECTED]> wrote: > > > > > > > On 2007-08-28, Davy <[EMAIL PROTECTED]> wrote: > > > > On Aug 28, 11:00 am, Davy <[EMAIL PROTECTED]> wrote: > > >> Hi all, > > > >> It is well known that Python is appr

Re: How to parse this line of code manually

2007-08-28 Thread Dustan
On Aug 28, 2:59 am, "A.T.Hofkamp" <[EMAIL PROTECTED]> wrote: > On 2007-08-28, Davy <[EMAIL PROTECTED]> wrote: > > > > > On Aug 28, 11:00 am, Davy <[EMAIL PROTECTED]> wrote: > >> Hi all, > > >> It is well known that Python is appreciated for its merit of concise. > >> However, I found the over conci

Re: How to parse this line of code manually

2007-08-28 Thread A.T.Hofkamp
On 2007-08-28, Davy <[EMAIL PROTECTED]> wrote: > On Aug 28, 11:00 am, Davy <[EMAIL PROTECTED]> wrote: >> Hi all, >> >> It is well known that Python is appreciated for its merit of concise. >> However, I found the over concise code is too hard to understand for >> me. >> >> Consider, for instance, >

Re: How to parse this line of code manually

2007-08-27 Thread Davy
On Aug 28, 11:00 am, Davy <[EMAIL PROTECTED]> wrote: > Hi all, > > It is well known that Python is appreciated for its merit of concise. > However, I found the over concise code is too hard to understand for > me. > > Consider, for instance, > def known_edits2(word): > return set(e2 for e1 in e

How to parse this line of code manually

2007-08-27 Thread Davy
Hi all, It is well known that Python is appreciated for its merit of concise. However, I found the over concise code is too hard to understand for me. Consider, for instance, def known_edits2(word): return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in NWORDS) Shall I understand