www.python.org/dev/peps/pep-0008/

 

PEP 8 -- Style Guide for Python Code

The official home of the Python Programming Language

www.python.org


pip3 install flake8 --user
flake8 a.py
a.py:1:2: E225 missing whitespace around operator
a.py:3:1: W191 indentation contains tabs
a.py:4:1: W391 blank line at end of file

.vimrc
set smartindent
set tabstop=4
set expandtab
set shiftwidth=4
set textwidth=79

'{BE} Python 3.1x' 카테고리의 다른 글

python에서 아쉬운 점 private, protected, public...  (0) 2021.04.06
VoyagerX 창업자_개발 능력 요구사항  (0) 2020.12.29
0 matrix  (0) 2020.12.01
for, zip, range  (0) 2020.11.30
Finally... Android also.  (0) 2020.11.04

+ Recent posts