여백 넣기

    [Python] Python 여백 넣기, 주석

    Python에서 여백넣기(Python Indentations) 여백 넣기는 하위코드블록(a block of code)을 나타냄 4칸의 공백을 권장 / (Tab키) Python은 들여쓰기가 엄격하다. if 5>2: print("This is a sub block") print("Five is greater than two") 실행 결과 This is a sub block Five is greater than two if 5