인덴테이션 들여쓰기를 통해 code block를 구분. 다른 언어는 가독성을 위해 인덴트를 하지만 파이썬은 문법적으로 필수 사항이다. 인덴트를 정확하게 지키지 않으면 원하는 대로 동작하지 않을 가능성이 크다. Python relies on indentation (whitespace at the beginning of a line) to define scope in the code. Other programming languages often use curly-brackets for this purpose. (출처 https://www.w3schools.com/python/python_conditions.asp) tip : 콜론 부터 인덴테이션 된 사항들은 다른 언어에서 culry braket {} 로 묶..