파이썬 PEP
-
[Python] PEP - 스타일코드 공백(Whitespace)Python/Python Programming 2018. 5. 14. 22:43
PEP (Python Enhancement Proprosal) : 파이썬 개선 제안서DOCS : https://www.python.org/dev/peps/pep-0008/ 1. 파이썬의 들여쓰기는 공백 2칸, 4탄, 탭(tab)을 모두 허용하지만, 파이썬 코딩 스타일 가이드(PEP 8)에서 '공백 4칸' 을 규정 구 분 설 명 공백 4칸(PEP 8 규정) if ['a']: print('This is True') # 공백 4칸This is True 공백 2칸 if ['a']: print('This is True') # 공백 2칸This is True 탭 if ['a']: print('This is True') # 탭his is True 혼용하면 문법에러 발생 if ['a']: print('This is T..