Python · code self-checking tool Pylint

1 、 Pylint

pylint is a tool for finding bugs in Python source code, finding errors, and running code specifications. That is to say, when your code has an Error, you can find the error, and when there is no error, it can suggest you to modify the code according to the Python code specification to make the code more beautiful.

2. Install pylint

pip3 install pylint

3. Find the installation address of pylint

$ which pylint

 4. Pycharm uses Pylint tools

1)Pycharm --> Preferences --> Tools --> External Tools --> + 

Program: The address of pylint, you can find the address through which pylint

Arguments:py

Guess you like

Origin blog.csdn.net/qq_37865996/article/details/124365500
Recommended