Help with sets

2010-10-04 Thread B. M. Whealton
below, what is being yielded, the key or the value in the dictionary? I refer to this for loop here: for subject in self._pos[predicate][ojbect]: yield (subject, predicate, object) Thanks for any help and insights into this, Bruce -- ++++++++

Re: Standard Forth versus Python: a case study

2006-10-13 Thread B M
i hang my head in shame. On 10/12/06, Gabriel Genellina <[EMAIL PROTECTED]> wrote: > At Thursday 12/10/2006 17:44, [EMAIL PROTECTED] wrote: > > > > > > fun median { > > > > > var x = 0. > > > > > while( *p++) { > > > > > if( (*p) > x) x = *p. > > > > > } > > > > > return x. > > > > >