파이썬 언어 장점
- 문법이 간결
- 다양한 운영체제 지원
- GUI Application 개발(PyQT)
- 방대한 라이브러리 지원
- 범용 언어(네트워크, 웹, 데이터분석, 기계학습 등)
VScode
사용할 때 편리하게 만드는것 설정
extentions (ctrl+shift+x) > python 설치
command palette (ctrl+shift+p) > python select Interpreter
file→preference→keyboard shortcuts
실행 f5
디버깅없이 실행 ctrl+f5
- tesk runner 설정하기
편리하게 실행하는 터미널 설정.
팔레트에서 task configure tesk → other
// tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// 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
}
}
]
}
설정후엔 task:run build task 를 사용해서 간단하게 하기 떄문에 ctrl shift b 를 이용한다.