Tagged Questions

14
votes
11answers
780 views

What are quines? Any specific purpose to have them?

I came across this term - Quine (also called self-reproducing programs). Just wanted to know more on it. How does one write a quine and are they used anywhere or they are just an exercise for fun? ...
2
votes
2answers
311 views

shortest python quine?

_='_=%r;print _%%_';print _%_ is this the shortest possible python quine, or can it be done better? (not counting the trivial 'empty' program). it seems to improve on all the entries on The Quine ...
2
votes
4answers
138 views

Is it possible to access the source code of a python script passed to python on standard in?

This is a bit of a random question that is more out of curiosity than any specific need. Is it possible to write some python code that will print some stuff out, including the source code itself, ...
2
votes
2answers
302 views

Is this a valid quine?

def start(fileName): fileReader = open(fileName) for row in fileReader: print row, if __name__ == "__main__": import sys if len(sys.argv) <= 1: print "usage quine /path/to/file" ...