🐍 Pylint scans though your python file and provides a report on how well the program is written. It will give you a detailed analysis if your program is following universal code writing rules. It will report errors as well as styling that does not adhere to universal python program writing standards.
Process to install Pylint and run it on your program:
- Install Pylint by running 'pip instal pylint' on your Command Prompt
- Write a program in a file and save it on your computer
- Run Pylint on your file by running the following on your Commad Prompt: pylint filename.py
Comments
Post a Comment