Home > Article > Backend Development > What editor should python beginners use?
For beginners, in fact IDE (integrated development environment) is not a good choice. The powerful functions of IDE will help beginners complete a lot of work, causing beginners to ignore some very important syntax or function usage. If you rely too much on the IDE, a beginner may quickly complete a piece of code and run it successfully. However, without the IDE, the same program may have various bugs, such as spelling, format, etc.
Therefore, for beginners to learn Python, or other programming languages, the best programming tool is a text editor. It does not need too fancy functions, as long as it runs quickly. It’s fast and takes up less resources, so it’s OK.
Sublime Text (Recommended learning: Python video tutorial)
Sublime Text is a code editor (Sublime Text 2 is a paid software, but can be tried indefinitely), is also an advanced text editor for HTML and prose. Sublime Text was developed by programmer Jon Skinner in January 2008. It was originally designed as a Vim with rich extension functions.
Sublime Text has a beautiful user interface and powerful features such as code thumbnails, Python plug-ins, code snippets, etc. Key bindings, menus and toolbars can also be customized.
Sublime Text’s main features include: spell check, bookmarks, complete Python API, Goto function, instant project switching, multi-selection, multi-window and more. Sublime Text is a cross-platform editor that supports Windows, Linux, Mac OS X and other operating systems.
Geany
Geany is a compact cross-platform open source integrated development environment developed using GTK 2. The source code is distributed under the GPL license and is free. software. Current version: 1.34.
Geany is compact and quick to start. It has syntax highlighting, automatic code completion, code folding, plug-in expansion, automatic completion of frequently used structures, call prompts and other functions. It supports C, Java, PHP, HTML, Languages such as Python, Perl, and Pascal are relatively simple tools for developers.
For more Python related technical articles, please visit the Python Tutorial column to learn!
The above is the detailed content of What editor should python beginners use?. For more information, please follow other related articles on the PHP Chinese website!