본문 바로가기
개발 이야기/Python

Python - 01. 시작하기

by Crazy Lazy 2021. 7. 14.

이 글은 Python 공부하며 정리한 글로, 추후 개인 검색용으로 사용하기 위한 기록임.

 

1. Abstract.

Python 은 interpret language (소스 코드를 바로 실행) 로, 쉽고 간편하며 빠르다는 특징.

다양한 부문에서 활용이 가능하나, Mobile 및 대규모 Program, Row level program 에는 맞지 않음.

 

2. Python 설치.

1) 설치 File Download. ( URL : http://python.org/downloads/ )

 

Download Python

The official home of the Python Programming Language

www.python.org

2) 설치 File 실행.

- 최하단에 위치한 Add Python 3.9 to PATH checkbox 를 Check.

(PATH 에 대한 사전지식이 있고, 이를 해결할 수 있다면 Check 안해도 됨.)

 

- 상단의 Install Now 를 Click.

 

- 설치 완료 시 Close 를 Click 하여 설치 종료.

 

- 프로그램 메뉴에 [시작 → 모든 프로그램 → Python] 이 있는지 확인.

 

 

 

3. 실습을 위한 Web Browser 에서 Python 사용하기.

설치가 불편한 경우 아래와 같은 방법을 통해 Web Browser 에서 Python Shell 사용 가능.

 

- 공식 홈페이지 :  http://python.org

 

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

01.Link Click 시 나타나는 Home page 로, 붉은 색 부분을 Click.
02. Web 에서 Python 명령어를 실행할 수 있는 화면이 생성 됨.

 

그 외 아래와 같은 사이트도 있음.

- Python Tutor : http://pythontutor.com/

 

Python Tutor - Visualize Python, Java, C, C++, JavaScript, TypeScript, and Ruby code execution

VISUALIZE CODE EXECUTION Learn Python, Java, C, C++, JavaScript, and Ruby Python Tutor helps people overcome a fundamental barrier to learning programming: understanding what happens as the computer runs each line of code. You can use it to write Python, J

pythontutor.com

- ideone : https://ideone.com/

 

Ideone.com

Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows to compile and run code online in more than 40 programming languages.

ideone.com

 

'개발 이야기 > Python' 카테고리의 다른 글

Python - 06. 튜플(Tuple) 자료형  (0) 2021.07.17
Python - 05. 리스트(list) 자료형  (0) 2021.07.17
Python - 04. 문자열 자료형  (0) 2021.07.16
Python - 03. 숫자 자료형  (0) 2021.07.16
Python - 02. 기초 문법  (0) 2021.07.15