sublime text에서 한글을 print하려고 했는데, 자꾸 안되는 현상이 발생했다. 이럴 때는 다음과 같이 설정하면 된다. Tools-Build system-New build system을 누르면 빈 칸이 하나 뜨는데 다음과 같이 입력한다. { "cmd": ["C:/Program Files (x86)/Python34/python.exe", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python", "encoding": "cp949" } 그리고 적당한 이름으로 저장한다. 예를 들면 pythonmybuild.sublime-build 등으로 저장하면 된다. 마지막으로, build할 때, ..