$ pylint some_python_scripts.py ************* Module some_python_scripts some_python_scripts.py:1:0: C0114: Missing module docstring (missing-module-docstring) some_python_scripts.py:5:16: C0103: Argument name "n" doesn't conform to snake_case naming style (invalid-name) some_python_scripts.py:5:0: C0116: Missing function or method docstring (missing-function-docstring) some_python_scripts.py:21:0: C0116: Missing function or method docstring (missing-function-docstring) some_python_scripts.py:21:18: W0621: Redefining name 'numbers' from outer scope (line 46) (redefined-outer-name) some_python_scripts.py:27:14: C0209: Formatting a regular string which could be a f-string (consider-using-f-string) ------------------------------------------------------------------ Your code has been rated at 7.50/10 (previous run: 7.50/10, +0.00)