Python 개요와 설치
배경
- 1990년 후반 Guido van Rossum 개발 (네덜란드)
- 오픈소스 cross-platform
:General Public License(GPL)
- ABC, Modula-3, C, C++, Algol-68, SmallTalk, Unix shell 등을 기반으로 개발
특징
- High-level 언어
- Interpreted 언어
- Interactive 언어
- 객체지향 언어
- Scripting 언어
종류
- Python or CPython written in C/C++
version 2.7
version 3
-Jython: java for the JVM
-IronPython: in C# for the .Net environment
개발환경
- Python Interactive Shell - IDLE
- PyDev with Eclipse/Komodo/Emacs/Vim/TextMate/Gedit 등...
- iPython
이용방법
Python: Source code -> Interpreter -> Bytecode -> VM -> Output
기존: Source code -> Compiler -> Object Code -> Executor -> Output
python 설치
www.python.org 에서 다운로드
Eclipse with pydev (MAC)
1. Eclipse 설치
http://www.eclipse.org/ 에서 다운로드
eclipse를 실행해서 빨간색을 클릭해보면 저런화면이 뜸!!!!!!!! 이제 우리는 pydev를 설치하러 가즈아
2. pydev
방법 1. http://www.pydev.org/ 에서 다운로드
방법 2. help -> Install new software
1) 입력
Name: pydev
Location: http://pydev.org/updates
2) 아래와 같이 두개가 뜨는데,
PyDev
PyDev Mylyn Integration(optional)
설치 해주면 된다
3) 이제 설치하고나서 다시 클릭해보면 짜잔, PyDev가 보인다!
4) 이제 설치가 되었으면, Preferences(환경설정)에 들어가서 New...에서 자신이 설치한 python3를 Browse...를 통해 찾아 넣으면 된다.
3. Test
이제 오른쪽 버튼 -> New -> Project를 만들어서 사용해 보자 "끗!"
'Data > python·알고리즘' 카테고리의 다른 글
[python 기초] python의 list에 대하여 (0) | 2018.06.27 |
---|---|
[python 기초] 데이터 타입과 변수 (0) | 2018.06.26 |
[퀵 정렬] quick sort - python (0) | 2018.06.19 |
[백준 알고리즘] 1181번 단어 정렬 (0) | 2018.06.19 |
[합병 정렬] Merge sort - python (0) | 2018.06.19 |
댓글