On Dec 5, 2008, at 15:52 , walterbyrd wrote:

Can I load a file into the python interactive environment?  For
example I have a file called test.py that consists of the following:

print "hello"
print "hello again"

Can I load that file into python at the >>> prompt?

load "test.py"

or something like that?


I think you mean:

execfile('test.py')

that should work. if you have iPython, which is a great shell for running python code, you can do:

run test.py

as far as copy/paste, I think in Windows Python runs in a DOS prompt, so you should be able to right-click and choose Edit/Paste. Not too convenient, but I think it works.


                        bb



--
Brian Blais
[EMAIL PROTECTED]
http://web.bryant.edu/~bblais



--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to