[Tutor] Fwd: my first project: a multiplication trainer

Kent Johnson kent37 at tds.net
Sat Mar 15 13:53:28 CET 2008


Marc Tompkins wrote:

> Myself, I have a horrible time writing pseudocode  without slipping into 
> real-code syntax

Me too - often Python is more concise, precise and expressive than 
English for expressing an algorithm.

> while len(possibleQuestions) > 0:

could be simply
   while possibleQuestions:

Kent


More information about the Tutor mailing list