こんにちは、ナナです。
Pythonにおける標準コーディング規約である「PEP8」に関する記事です。
本記事ではPEP8で指摘される警告について原因や対処方法をまとめています。
Python PEP 8 警告一覧
E111:『Indentation is not a multiple of four』
E114:『Indentation is not a multiple of four(comment)』
E201:『whitespace after ‘(‘』
E202:『whitespace before ‘)’』
E203:『whitespace before ‘:’』
E211:『whitespace before ‘(‘』
E265:『block comment should start with ‘# ‘』
E303:『too many blank lines』
E305:『expected 2 blank lines after class of function definition』
E722:『do not use bare ‘except’』