About 56 results
Open links in new tab
  1. How do I open Python IDLE (Shell WIndow) in WIndows 10?

    Idle can be opened as an edit window or a shell window. To get the the idle edit window from the shell window is very simple if you know how. Here's how: Windows search for "idle" Click 'enter' idle shell …

  2. what is the difference between python shell and IDLE?

    Oct 6, 2018 · Python Shell is a command line tool that starts up the python interpreter. You can test simple programs and also write some short programs. However, in order to write a more complexed …

  3. How to run a python script from IDLE interactive shell?

    Jun 22, 2013 · The IDLE shell window is not the same as a terminal shell (e.g. running sh or bash). Rather, it is just like being in the Python interactive interpreter (python -i). The easiest way to run a …

  4. Difference Between Python's IDLE and its command line

    Sep 10, 2015 · 5 What are the key differences between Python's IDLE and its command line environment? IDLE looks nicer, of course, and has some kind of GUI... Moreover, is IDLE treated the …

  5. How to launch python Idle from a virtual environment (virtualenv)

    Feb 7, 2011 · Short answer Start the virtual environment Run python -m idlelib.idle From this answer. Long answer This answer assumes Python 3. There are a few different virtual environment …

  6. How do you add breakpoints to a Python program in IDLE?

    Jun 6, 2011 · Completing the answer supplied by the OP: after setting the breakpoint - you must turn on IDLE Shell's debug mode (using debug --> debugger). When you run the program, press "Go" in the …

  7. My Python IDLE is missing the Debugging menu - Stack Overflow

    Jul 20, 2015 · Debug menu is only displayed for Shell because 3 of 4 items are not applicable to edit windows and would have to be grayed out if Debug were added to editors. The 4th, 'Debugger' …

  8. Import module works in terminal but not in IDLE - Stack Overflow

    Jan 24, 2019 · Open python in cmd (type python and press enter) Import the module in cmd (type import modulename) Type modulename.__file__ You will get the path where the module is stored Copy the …

  9. Default working directory for Python IDLE? - Stack Overflow

    Mar 12, 2013 · Here's a way to reset IDLE's default working directory for MacOS if you launch Idle as an application by double-clicking it. You need a different solution if you launch Idle from a command line …

  10. editor - Python IDLE: Change Python Version - Stack Overflow

    Mar 7, 2013 · There are different versions of IDLE installed for each Python version. Depending on how you installed Python on Mac OS X, you may find different folders in /Applications. Look for a Python …