studyplan
깔끔하게 나오는 본문
보기 - 명령팔레트 + >configure task -
이거를
{
// See https://go.microsoft.com/fwlink/?Link...
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Project Label",
"type": "shell",
"command": "python",
"args": [
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"options": {
"env": {
"PYTHONIOENCODING": "UTF-8"
}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
이거로 바꿈
그리고 저장
그리고 -
Ctrl + Shift + B 누르면 깔끔하게 나옴