Language/Python

231113_Python 환경설정 및 설치

잇꼬 2023. 11. 13. 17:42
728x90
반응형
SMALL

https://www.python.org/

 

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

PYTHON 언어로 다운을 받아 별도로 라이브러리로 지정해줄 수 있지만, 

아래와 같은 Anaconda 로 다운을 받아 한번에 사용해주는 것이 편리하다.

https://www.anaconda.com/

 

Anaconda | The World’s Most Popular Data Science Platform

Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.

www.anaconda.com

https://www.anaconda.com/download

 

Free Download | Anaconda

Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine.

www.anaconda.com

여기서 windows 3.11 로 다운을 받아준다. 

레벨이 높다고 해서 다 좋은 것만은 아니니 참고하

cmd 처럼 python version 확인 가능하다

(base) C:\Users\ITWILL> python --version

또는 

(base) C:\Users\ITWILL> python 

으로 도 버전확인 가능하다

 

>>> v_str = 'oracle' : 변수선언 후 지정해주고 

>>> type(v_str) : 변수의 type 확인해보면 

<clasee 'str'> : Sting 이라는 문자 타입이라 확인 가능하다.

>>> v_str = 100 : 으로 숫자로 변경해주고 

>>>  type(v_str) : 변수의 type 확인해보면 

<class 'int'>  'int' 이라는 숫자 타입 이 확인 가능하다.

>>> quit() : python 에서 나오기 위해서는 quit() 을 사용하면 된다.

 

Spyder 이라는 python 언어를 사용할 수 있는 프로그램을 실행해준다. 

728x90
반응형
LIST