Re: [Tutor] How to run a script file

2005-01-05 Thread Bernard Lebel
Thanks everyone who answered, it's sorted now :-D Bernard ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] How to run a script file

2005-01-04 Thread Patric Michael
, January 04, 2005 14:56 To: tutor@python.org Subject: Re: [Tutor] How to run a script file Hi Bernard... The most basic form is to type python followed by the script you want to run. If your script is not in the system path, you'll either need to cd to the directory, or give a full

Re: [Tutor] How to run a script file

2005-01-04 Thread Alan Gauld
Sorry if I missed something obvious, but how do I execute a python script file in the interpreter? I have Using the Python Interpreter in the Python tutorial but not much is said... You can import a script at the prompt as you would under Pythonwin. Or you can run IDLE much as you did