pylint is greate tool for error dectection and coding stanard.
While I developed and carried out some open-source project like Konltk.
I found this such as pylint. so before forgetting this, I wrote about it here
How to use pylint for coding standar
Docstring on python
When you write python code, you have write docstring for attribute, __doc__ in python.
i.e. write docstring on top of a module, function, class and method definition for such a docstring to becomes the __doc__ special attribute of the object. surrounding “"”triple double quotes””” around docstring
Ther are two type of docstring in python,Those are one-line Docstring and Multi-line Docstring