Running a python script from interactive mode

2009-11-17 Thread ashwini yal
Hi, I am trying to run a python script from interactive mode ,but i am not able to know how to run it? Is it possible? if yes please let me how to run the script? -- Regards , Ashwini . K -- http://mail.python.org/mailman/listinfo/python-list

Re: Running a python script from interactive mode

2009-11-17 Thread Chris Rebert
On Tue, Nov 17, 2009 at 8:56 PM, ashwini yal ashwini...@gmail.com wrote: Hi, I am trying to run a python script from interactive mode ,but i am not able to know how to run it? Is it possible? if yes please let me how to run the script? execfile(/path/to/the/script.py) or if it's on your

Re: Running a python script from interactive mode

2009-11-17 Thread Himanshu
2009/11/18 ashwini yal ashwini...@gmail.com: Hi, I am trying to run a python script from interactive mode ,but i am not able to know how to run it? Is it possible? if yes please let me how to run the script? a) If you want to debug it then see http://docs.python.org/library/pdb.html b) If