disappearing interpreter

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • oregon skip

    disappearing interpreter

    I am a new Python programmer, using Windows XP, IDLE and the
    interpreter. Everything is
    OK except that when I double check a name.py file it runs on the
    interpreter, but the
    window disappears before I can see what happened. Any suggestions?
  • =?ISO-8859-1?Q?Andr=E9?=

    #2
    Re: disappearing interpreter

    On May 31, 8:59 pm, oregon skip <skipjack...@cl earwire.netwrot e:
    I am a new Python programmer, using Windows XP, IDLE and the
    interpreter. Everything is
    OK except that when I double check a name.py file it runs on the
    interpreter, but the
    window disappears before I can see what happened. Any suggestions?
    This is because the entire program runs ... and ends quickly.

    Try to add the following line:

    raw_input("Done . Press the enter key to quit.")

    André

    Comment

    Working...