본문 바로가기
컴퓨터+IT/Python

[파이썬 공부] 입문 (1) 소개 및 설치

by For Your Life 2022. 8. 17.
반응형

출처:  freeCodeCamp, Learn Python: Full Course for Beginners (https://www.youtube.com/watch?v=rfscVS0vtbw)

 

1. 파이썬(Python)의 특징

  • 강력하고 사용하기 쉽다: 별다른 구문(syntax)을 요구하지 않는다
  • 취업을 위해 가장 선호되는 프로그래밍 언어 중 하나에 해당한다

 

2. 파이썬 및 파이참(PyCharm) 설치

 

Download Python

The official home of the Python Programming Language

www.python.org

  • 파이참 다운로드: https://www.jetbrains.com/pycharm/
    • 텍스트 에디터(text editor)의 하나에 해당
    • Community Edition(무료) 선택해서 다운로드: Professional Edition(유료) 추후 필요시 구입
 

PyCharm: the Python IDE for Professional Developers by JetBrains

The Python & Django IDE with intelligent code completion, on-the-fly error checking, quick-fixes, and much more...

www.jetbrains.com

 

3. [참고] 텍스트 에디터(text editor)

  • 많은 양의 코드(code)를 작성하고 관리하기 위한 프로그램
  • IDE(Integrated Development Environment, 통합 개발 환경)라고 부른다
  • 코드를 작성할  오류(error) 알려주는 등의 기능이 있다
반응형