Python configuration usage guide in VS Code

1. Comparison between PyCharm and VS Code

1. Resource usage

In these two softwares, the size of the memory they occupy is different. PyCharm will take up a little more, it is 1.5g, and VScode is only 265M. From the perspective of the memory of the software, using VScode will be relatively more It is flexible and compact, so when it is opened, its speed will be faster. In terms of performance, VS Code surpasses PyCharm. This is mainly because VS Code is not a complete IDE, just a simple text editor, the startup time will be shorter, then the memory footprint is less, and the response speed is better. 

2. Possessed functions

In these two softwares, they all have different functions, but the plug-ins in VS Code are more complete than those of pycharm. But in consideration of many factors, pycharm uses some concise ways to deal with the development of Python, but in VS Code, too many integrated plug-ins are used to realize these functions, and it is relatively random when using it. It is not so convenient, but it is different in Pycharm, it can also integrate plug-ins, for example, in the process of Python development, we can import a large number of package processing, if the package is not installed, it will be marked as gray, But this feature is not included in vscode. 

3. Practicality

In PyCharm, users can have a better experience and developers are very convenient when using it. Most people still prefer Pycharm.

In short, the Pro version of Pycharm is much easier to use than Vs Code, and the community version and Vs Code have their own advantages and disadvantages. No matter which version of Pycharm, it takes more resources than Vs Code. Of course, the Vs Code+pylance plug-in is not vegetarian.

Given PyChar

Guess you like

Origin blog.csdn.net/qq_35029061/article/details/130418939