Top "Python-idle" questions

IDLE is Python's Integrated Development and Learning Environment.

TypeError: 'filter' object is not subscriptable

I am receiving the error TypeError: 'filter' object is not subscriptable When trying to run the following block of code …

python python-idle
Run pip in python idle

I am curious about running pip. Everytime I ran pip in command shell in windows like that c:\python27\script&…

python pip python-idle
interactive shell debugging with pycharm

I am new to PyCharm. I have been using IDLE for a long time. It is very convenient to use …

python pycharm python-idle
Unable to load IDLE (Python GUI)

I have installed Python 2.7 (Windwos 7). However, I am unable to load the GUI. I get no response when I try …

python python-idle
Default working directory for Python IDLE?

Is there a configuration file where I can set its default working directory? It currently defaults to my home directory, …

python python-idle
Cleanest way to run/debug python programs in windows

Python for Windows by default comes with IDLE, which is the barest-bones IDE I've ever encountered. For editing files, I'll …

python windows python-idle
How do I unindent blocks of code in Python?

I am using Python 2.7.10 and am having trouble trying to unindent a block of code. Surely there is some sort …

python indentation python-idle
Python IDLE: Run main?

I'm in IDLE: >>> import mymodule >>> # ??? After importing a module with: if __name__ == '__main__…

python python-idle runpy
IPython workflow (edit, run)

Is there a GUI for IPython that allows me to open/run/edit Python files? My way of working in …

python user-interface ipython python-idle
Python, writing multi line code in IDLE

How do i write >>> x = int(raw_input("Please enter an integer: ")) >>> if x &…

python python-idle