Okay. I have completed my first python program.It has around 1000 lines of code.
During development I placed plenty of print
statements before running a command
You should take a look at python logging module
EDIT: Sample code:
import logging
if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG, filename="logfile", filemode="a+",
format="%(asctime)-15s %(levelname)-8s %(message)s")
logging.info("hello")
Produce a file named "logfile" with content:
2012-10-18 06:40:03,582 INFO hello