Escape
-
[Python] 주요 이스케이프 시퀀스Python/Python Programming 2018. 4. 27. 14:04
이스케이프 시퀀스 (escquence sequence) 설명 \\ 백 슬래시 (backslash) print('\\') -------------------- \ \' , \" 작은 따옴표, 큰 따옴표 print('\'', '\"') -------------------- ' " \b 백스페이스(Back Space) print('test\b') -------------------- tes \n 개행문자, 새 라인 (Newline) print('test\ntest') -------------------- test test \t 탭 문자 (TAB) print('Python\tPython') -------------------- Python Python