Home > Article > Backend Development > What software do beginners use to write python?
What software should beginners use to write python
The following are several commonly used Python code editors and Python integrated development tools.
Recommended learning: Python video tutorial
1. Python code editor
1. Sublime Text
Sublime Text is a very popular code editor that supports Python code editing and is compatible with all platforms. It has rich plug-ins that extend syntax and editing functions. It is fast, compact, and has good compatibility. Very popular among programmers!
2. Vim
Vim and Vi are model editors that separate text viewing from text editing. VIM has done a lot on top of the original VI. With improvements, including extensible models and in-place code building, VIMScripts can be used for a variety of Python development tasks!
3. Visual Studio Code
Visual Studio Code is a full-featured code editor compatible with Linux, Mac OS Configuring almost any task, support for Python can be installed in Visual Studio Code. The installation is successful with just a quick click of a button, and Python installations and libraries are automatically recognized.
2. Python Integrated Development Environment
1. PyCharm
PyCharm is the only comprehensive development environment specifically for Python. The functional integrated development environment also has a paid version and a free open source version. PyCharm supports quick installation and use in Windows, Mac OS X systems, and Linux systems.
PyCharm directly supports the Python development environment. You can open a new file and start writing code. You can also run and debug Python programs directly in PyCharm. It also supports source code management and projects, and it has many conveniences. And support community, you can quickly learn to use it!
2. Spyder
Spyder is an open source Python integrated development environment optimized for data science workflow. It is included in the Anaconda software package Among the manager releases, Spyder has most of the features that an integrated development environment should have, such as a code editor with powerful syntax highlighting, Python code completion, and an integrated file browser. It also has features that are not found in other Python editing environments. The variable browser function is very suitable for data scientists using Python.
3. Thonny
Thonny is an integrated development environment for novices, applicable to all mainstream platforms. By default, Thonny will be bundled with Python The version is installed together, which is very convenient for novices to use!
For more related knowledge, please pay attention to PHP Chinese website!
The above is the detailed content of What software do beginners use to write python?. For more information, please follow other related articles on the PHP Chinese website!