Top "Python-idle" questions

IDLE is Python's Integrated Development and Learning Environment.

How to stop Python program execution in IDLE

I have a python script that uses plt.show() as it's last instruction. When it runs, IDLE just hangs after …

python matplotlib tkinter break python-idle
How to import/open numpy module to IDLE

I want to use numpy for a program I have to run and I want to do it in the …

python numpy anaconda python-idle
Running Python file by double-click

I have really annoying problem, I cannot run a Python file just by double-clicking. I have tried to set it …

python batch-file python-idle
Python IDLE: Change Python Version

I have Python 2.x and 3.x on my machine (Mac OS X 10.6). For some things I want to use ver 2, …

python editor version python-idle
Python IDLE. Auto-complete/Show completions not working

IDLE is being very dodgy as to when it will actually show an Auto-complete menu. As of late it hasn't …

python autocomplete codeblocks python-idle
"Edit with IDLE" option missing from context menu

I have Python 2.7.5 that installed with ArcGIS 10.2.2. When I first right-clicked a .py script I'd previously written it listed the "…

python contextmenu edit python-idle
Python IDLE subprocess error?

IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connection. Don't …

python python-3.x python-idle
How to launch python Idle from a virtual environment (virtualenv)

I have a package that I installed from a virtual environment. If I just launch the python interpreter, that package …

python virtualenv python-idle
How to get the list of all initialized objects and function definitions alive in python?

Say that in the python shell (IDLE) I have defined some classes, functions, variables. Also created objects of the classes. …

python memory python-idle
Exit gracefully if file doesn't exist

I have following script in Python 3.2.3: try: file = open('file.txt', 'r') except IOError: print('There was an error opening …

python python-idle