파이썬 기초 2024년 1월 27일 vscode 설치 및 세팅 파이썬 인코딩 설정 { // 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 } } ] } 한국어 확장 설치 print() 한 줄 주석 : # 여러 줄 주석 : ''' ''' 파이썬 데이터 타입 - 숫자 - 문자 - 논리 - 리스트 - 튜플 - 집합 - 딕셔너리