Quines are programs that, when you run, will print out its own source text. You can read this very long article about how to write one in C. Here we're going to do it in Python and skip a lot of the details and theory. You can, of course, "just" read the data from disk: importsysprint(open(sys.argv[0],'r').read()) This is obviously cheating though. It only works if we call it the right way, and is dependent on the command line to work. Really we want something pure that can be done in most pr...