{
// 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
}
}
]
}
'전공 과목 이수1👨💻 > 파이썬' 카테고리의 다른 글
스크랩핑- 네이버 날씨 / 뉴스 헤더라인 (0) | 2021.12.04 |
---|---|
크롤링 - 유튜브 5시간짜리 보고 정리 (0) | 2021.12.03 |
파이썬 크롤링 - lxml, cssselector, requests 설치 (0) | 2021.12.02 |
크롤링 공부 - urllib, urlopen (0) | 2021.12.02 |
정렬알고리즘 구현하기 (0) | 2021.06.23 |
파이썬 - 함수 생성 예제 세개 (0) | 2020.12.03 |