Interview Questions

Is there a tool to help find bugs or perform static analysis?

Python Questions and Answers


(Continued from previous question...)

Is there a tool to help find bugs or perform static analysis?

Yes.
PyChecker is a static analysis tool that finds bugs in Python source code and warns about code complexity and style.

Pylint is another tool that checks if a module satisfies a coding standard, and also makes it possible to write plug-ins to add a custom feature.

(Continued on next question...)

Other Interview Questions