About 53 results
Open links in new tab
  1. 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 …

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

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

  5. Install python modules/package using IDLE on Windows

    I've downloaded & installed 3 versions of Python from python.org, but still it seems that the packages are not installed. Can anyone tell me how to install modules using IDLE on Windows 7.

  6. python - How do I access the command history from IDLE? - Stack …

    On bash or Window's Command Prompt, we can press the up arrow on keyboard to get the last command, and edit it, and press ENTER again to see the result. But in Python's IDLE 2.6.5 or …

  7. python - SyntaxError: multiple statements found while compiling a ...

    Jan 20, 2014 · 23 In the shell, you can't execute more than one statement at a time: >>> x = 5 y = 6 SyntaxError: multiple statements found while compiling a single statement You need to …

  8. python - How do I open a .py file in IDLE for editing without …

    Dec 2, 2011 · Python for Windows has built in support for right clicking a .py file, and selecting, "edit with IDLE", instead of the usual action, which is running the file. How can I accomplish …

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

  10. How do I print colored text in IDLE's terminal? - Stack Overflow

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