일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Session
- gitignore
- 파이썬
- 가중치
- 저장소
- data
- Python
- Linux
- model
- opencv
- r
- 이미지
- CLONE
- AI
- imshow
- destroyallwindows
- Spring
- imread
- Anaconda
- git
- Vector
- 머신러닝
- datascience
- list
- db
- 함수
- branch
- tensorflow
- Java
- Repository
- Today
- Total
목록Python (25)
AI학교

C:\Users\96041>conda info active environment : None user config file : C:\Users\96041\.condarc populated config files : conda version : 4.7.12 conda-build version : 3.18.9 python version : 3.7.4.final.0 virtual packages : base environment : C:\Users\96041\Anaconda3 (writable) channel URLs : https://repo.anaconda.com/pkgs/main/win-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anacond..
C:\계정\계정이름>python --version Python 3.7.4 C:\Users\96041>python Python 3.7.4 (default, Aug 9 2019, 18:34:13) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32 Warning: This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://conda.io/activation Type "help", "copyright", "credits"..

특징 장점 1. 간결하고 쉬운 문법 2. 높은 가독성 3. 높은 확장성(GLUE LANGUAGE) Python의 종류 : 구현체 CPython : C로 작성된 파이썬 인터프리터(*) JYthon : JAVA로 작성된 파이썬 인터프리터 IronPython : .NET 플랫폼용 파이썬 인터프리터. C#으로 구현 PyPy : Python으로 작성된 파이썬 인터프리터 ***Python의 버전 Python 활용분야 PloyGlot 유효한 형태의 여러 프로그래밍 언어로 작성된 컴퓨터 프로그램 또는 스크립트로, 컴파일 또는 해석에 사용되는 프로그래밍 언어와 상관없이 동일한 작업 또는 출력을 수행합니다. 프로그래밍 언어 순위

R 언어 설치 R studio 설치 데이터 엔지니어 - Engineering 데이터 사이언스 - 데이터 지식 ----파이썬 - Engineering 데이터 분석가 - 실무 데이터의 이해 - 통계적 지식 통계 모델 : R language # 주석 : 인터프리터가 해석하지 않는다. # 산술 연산 : +, -, *, / # 제곱 : ^, ** 7^5 # 두 개 이상의 명령을 한꺼번에 실행할 경우만 ; 필요 7 ^ 5 ; 7**5 # 나눈셈의 몫과 나머지 # 몫: %/%, 나머지 %% 7%/%5 # 몫 7%%5 # 나머지 #비교 연산 : =, ==, != # 논리값 : TURE or FALSE -> T or F 줄여쓸 수 있다. 7 == 5 #equal 7 != 5 #not equal #논리 연산 : |(OR)..