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

    On the file you want to open Python is python, idle is Idle, they're different things, python automatically install Idle for you. Well, the easiest way to open IDLE is to create a blank .py file, and do what I said …

  2. 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 …

  3. 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 …

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

    Apr 17, 2021 · 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 same as the …

  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 as you close IDLE.

  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. python - Using IDLE to display script output like in Shell - Stack Overflow

    Nov 15, 2022 · When using the IDLE python shell and typing the commands one by one, there is an output or response to most lines of code typed. When writing a script and then running that script in …

  8. 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?

  9. python - How to run two modules at the same time in IDLE - Stack …

    Mar 11, 2013 · You can run multiple instances of IDLE/Python shell at the same time. So open IDLE and run the server code and then open up IDLE again, which will start a separate instance and then run …

  10. python - Entering multiple lines / statements into the IDLE shell ...

    Nov 10, 2021 · A Python program is a sequence of statements. In IDLE's Shell, one enters and executes a single statement at a time. This is much more useful than entering a single physical line at a time, …