Kirby wrote:
for question, answer in quiz: print(question) user_answer = raw_input("Your answer? ")
Kirby, will the class be using Py2 or Py3? It looks like you're mix-and-matching, using the *print* function (Py3) along with the *raw_input* function (Py2). Do you really want to inflict "from __future__ import print_function" on your students?
Best, John _______________________________________________ Edu-sig mailing list Edu-sig@python.org http://mail.python.org/mailman/listinfo/edu-sig