Python 설치
•
https://www.python.org에 접속한 뒤 Downloads 버튼 클릭
•
Add Python to environment variables 반드시 체크
•
PC 재시작
터미널에서 아래와 같이 입력
python --version
PowerShell
복사
또는
phthon3 --version
PowerShell
복사
IDE(통합 개발 환경) 설치
코드 파일을 작성, 편집, 실행할 수 있는 도구
대표적인 Python IDE 종류
•
Visual Studio Code : 가볍고 확장성이 뛰어남
•
PyCharm : 파이썬 전용 강력한 기능 제공
•
Jupyter Notebook : 데이터 분석과 실험에 특화
Hello Python 출력
print("Hello, Python!")
Python
복사

