Re: [Tutor] How to stop a script.

2007-12-28 Thread Tiger12506
Ctrl+c will issue a KeyboardInterrupt which breaks out of programs such as the one you described. (The only situation it doesn't is when the program catches that exception. You won't see that 'til you get your sea legs ;-) ___ Tutor maillist - Tutor

Re: [Tutor] How to stop a script.

2007-12-28 Thread Ian Egland
Yea I think that I will wait till I get sea legs for the first time, hehe. On Dec 28, 2007 1:16 PM, Marc Tompkins <[EMAIL PROTECTED]> wrote: > As far as I know, not unless you either 1) use threading and put the > killable process in a separate thread or 2) stop and check for input once in > a wh

[Tutor] How to stop a script.

2007-12-28 Thread Ian Egland
Hi everyone... I litterally just started python and did the following 'hello world' related tutorial. http://hkn.eecs.berkeley.edu/~dyoo/python/idle_intro Being the kind of person who like to experiment, I tried changing the following scrip