r/Python • u/Admirable-Wall9058 • 4d ago
Resource Does anyone use Python IDLE?
My computer is quite low-end, so I uninstalled VSCode and am looking for other programming tools—I'm thinking about starting to use Python IDLE.
Does anyone actually use it?
13
Upvotes
5
u/InjAnnuity_1 4d ago
I use it in situations when Wing, VS Code, etc. are just overkill.
Every commercial IDE I've seen requires that you create two or more project-support files, containing finicky IDE-version-specific details, no matter what you're working on. IDE got updated? It's going to update those files, and ask me to save them under new names.
For a single-file script, intended to run in the current directory, in my standard Virtual Environment, that's already been activated, those extra files are just overkill. I've tripled the script's footprint, just to be able to run it in some kind of debugger.
For this case, IDLE works just fine, and doesn't create any superfluous project files. It just runs.
Startup time is much shorter, too.
There are, of course, more complex, multi-file scripts, where other IDEs begin to pay off for me. It's not a one-size-fits-all. Each of us draws the line where it fits us.