Learn Before
Concept
Pylint example output
pylint can be run on individual files, or entire directories containing several python files. Some example output of what pylint can do can be found below:
$ pylint simplecaesar.py ************* Module simplecaesar simplecaesar.py:7:0: C0103: Constant name "shift" doesn't conform to UPPER_CASE naming style (invalid-name) simplecaesar.py:11:0: C0103: Constant name "encoded" doesn't conform to UPPER_CASE naming style (invalid-name) simplecaesar.py:15:12: C0103: Constant name "encoded" doesn't conform to UPPER_CASE naming style (invalid-name) ------------------------------------------------------------------ Your code has been rated at 8.42/10 (previous run: 7.37/10, +1.05)
0
1
Updated 2021-06-15
Tags
Python Programming Language
Data Science