반응형
1. Code Runner 설정으로 들어간다.
2. setting.json 열기
# python 항목 수정
"python": "python -u", 를 아래와 같이 수정
"python": "set PYTHONIOENCODING=utf8 && python -u",
# C, Cpp 항목 수정
"c": "chcp 65001 && cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "chcp 65001 && cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
반응형
'Dev > Python' 카테고리의 다른 글
[ Python ] 입출력(I/O) 속도 빠르게 하기 (3) | 2021.12.06 |
---|---|
[ Python ] 3항 연산자 (Ternary Operator) 에서 break, return을 사용 할 수 없는 이유 (0) | 2021.10.23 |
No module named 'win32com' (0) | 2021.03.28 |