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
_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to