• IndentationError IndentationError: expected an indented block - 들여쓰기 오류 → 들여쓰기를 해야 함 • SyntaxError SyntaxError: Missing parentheses in call to 'print' - 구문 오류 → 문법에 맞지 않음 • NameError NameError: name 'true' is not defined - 이름 오류 → 이름 'true'가 정의되지 않았음 • TypeError TypeError: unsupported operand type(s) for +: 'int' and 'str' - 유형 오류 → 연산자+가 피연산자 유형 'int'와 'str'를 지원하지 않음 TypeError: can only conca..