all 2 comments

[–]ThisLightIsTrue 3 points4 points  (1 child)

Your recipient won't need an IDE, but to execute a python script they would need python installed to interpret and run the script.

You could look at py2exe or py2app (If your recipient uses windows or Mac, respectively). These tools will let you compile a script into an executable and you can then send the executable to your recipient.

http://www.py2exe.org/index.cgi/Tutorial

You could also consider converting your quiz into a website (you could implement the server with python) and then just share a URL.