I have just started with Python. When I execute a python script file on Windows, the output window appears but instantaneously goes away. I need it to stay there so I can analyze my output. How can I keep it open?
|
|
You have a few options:
|
|||||||||||||
|
|
|
|||||||||||||
|
|
Start the script from already open cmd window or at the end of script add something like this
|
||||
|
|
|
you can combine the answers before: (for Notepad++ User) press F5 to run current script and type in command:
in this way you stay in interactive mode after executing your Notepad++ python script and you are able to play around with your variables and so on :) |
|||
|
|
|
I had a similar problem. With Notepad++ I used to use the command : C:\Python27\python.exe "$(FULL_CURRENT_PATH)" which closed the cmd windows immediately after the code terminated. Now I am using cmd /k c:\Python27\python.exe "$(FULL_CURRENT_PATH)" which keeps the cmd window open. |
|||
|