+1 vote
in Python by
What are the tools present to perform statics analysis?

1 Answer

0 votes
by

The two static analysis tool used to find bugs in Python are: Pychecker and Pylint

Pychecker detects bugs from the source code and warns about its style and complexity.While, Pylint checks whether the module matches upto a coding standard.

...