Re: [Tutor] Starting a .py file from Idle

2008-05-02 Thread bob gailer
Mihai Iacob wrote: Hello, Can anyone tell me how to start a program directly from the interpreter (i'm using IDLE). Usually i open a new window , write the lines of code and press F5 to run the program in the interpreter. The problem is that i need to to that directly from the interpreter.

Re: [Tutor] Starting a .py file from Idle

2008-05-02 Thread Alan Gauld
"Mihai Iacob" <[EMAIL PROTECTED]> wrote Can anyone tell me how to start a program directly from the interpreter (i'm using IDLE). Usually i open a new window , write the lines of code and press F5 to run the program in the interpreter. You mean the results show up in the interactive shell w

Re: [Tutor] Starting a .py file from Idle

2008-05-02 Thread Arthur
> On Fri, May 2, 2008 at 7:11 PM, Mihai Iacob <[EMAIL PROTECTED]> wrote: > Hello, > > Can anyone tell me how to start a program directly > from the interpreter (i'm using IDLE). Usually i open > a new window , write the lines of code and press F5 to > run the program in the interpreter. > The pro

Re: [Tutor] Starting a .py file from Idle

2008-05-02 Thread Arthur
i guess : START > RUN then type : python your_script.py arg_1 arg_2 ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] Starting a .py file from Idle

2008-05-02 Thread Mihai Iacob
Hello, Can anyone tell me how to start a program directly from the interpreter (i'm using IDLE). Usually i open a new window , write the lines of code and press F5 to run the program in the interpreter. The problem is that i need to to that directly from the interpreter. (I'm running windows).