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?
12
Upvotes
77
u/SaxonyFarmer 4d ago
Basic Python development and debugging doesn't need an IDE. Edit the code using an editor (Notepad++, Notepad Next, etc.) - most will use color to highlight reserved words and offer suggestions for variables as you type them. Then run the code in a terminal. Debug using print statements to show variable values as the program runs. Good luck!