About 2,880,000 results
Open links in new tab
  1. How to run a python script from IDLE interactive shell?

    Jun 22, 2013 · Rather, it is just like being in the Python interactive interpreter (python -i). The easiest way to run a script in IDLE is to use the Open command from the File menu (this may …

  2. How do I open Python IDLE (Shell WIndow) in WIndows 10?

    16 I am just starting to learn Python and I am using Windows 10. I downloaded and installed Python 3.4.3. But everytime I open Python from my Desktop or from C:\Python\python.exe it …

  3. Is there a way to clear Python's IDLE window? - Stack Overflow

    I know there's a similar topic about the Python console, but I do not know if they are the same. I tried system("clear") and it didn't work here. How do I clear Python's IDLE window?

  4. How can I run IDLE for Python 3 in a Conda environment?

    Dec 4, 2024 · For running Python 2, all I do is activate the required Conda environment and just type idle. It automatically opens IDLE for Python 2.7. But I can't figure out how to do this for …

  5. starting Python IDLE from command line to edit scripts

    Jun 9, 2017 · In a Windows shortcut, this becomes C:\Python34\python.exe -m idlelib "path/to/script.py". It launches a command window behind IDLE, but that goes away as soon …

  6. user interface - Python error - IDLE's subprocess didn't make ...

    I installed Python, latest version 3.4. and I am trying to open Python IDLE (GUI) mode, so when I open I get message "IDLE's subprocess didn't make connection. Either IDLE can't start or …

  7. python - How to make IDLE window more readable? Font too …

    Apr 14, 2016 · Your 'window' tag isn't specific enough to know what you're asking about. If you mean the python IDE, please use the python-idle tag. Otherwise use a tag telling us which …

  8. How do I configure Python IDLE's text font? - Stack Overflow

    Jan 18, 2017 · IDLE's tk Text windows (Shell, Editor, and Output) default to using 10 point 'TkFixedFont'. On Windows, (and only on Windows), that resolves to 'Courier'. I believe that …

  9. python - How do I print colored text in IDLE's terminal ... - Stack ...

    I just want to print text in a color other than blue when I'm outputting in IDLE. Is it possible? What's an easy way to do this? I'm running Python 3.6 on Windows. Please explain with an example. …

  10. 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, …