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