- \n : 줄바꿈
- \" : 문장 내에서 "
- \' : 문장 내에서 '
- \\ : 문장 내에서 \
- \r : 커서를 맨 앞으로 이동
- \b : 백스페이스 (한 글자 삭제)
- \t : 탭
print("Red Apple\rPine") # PineApple 출력
print("Redd\bApple") # RedApple 출력
print("Red\tApple") # Red Apple 출력
-출처-
print("Red Apple\rPine") # PineApple 출력
print("Redd\bApple") # RedApple 출력
print("Red\tApple") # Red Apple 출력
-출처-