hello.py 216 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import sys print "Hello from py2exe" print "frozen", repr(getattr(sys, "frozen", None)) print "sys.path", sys.path print "sys.executable", sys.executable print "sys.prefix", sys.prefix print "sys.argv", sys.argv