기본 콘텐츠로 건너뛰기

Python 시작

Python
- Machine Learning
- AI Application
- 데이터 전처리

- Python Web Programming
    (Django, Flask)
- Spring <-> Flash(AI Server)

설치
- Python 만 설치(언어에 내장된 기본 모듈만 포함됨)
- Anaconda Distritution(Python, ML modules, IDE)
- Jupyter notebook

CLI (Command Line Interface)
- cmd, shell
- python shell : Interactive Shell

이 블로그의 인기 게시물

Grid 정렬

  .container { display : grid ; gap : 22px ; width : 1000px ; grid-template-columns : repeat ( auto-fit , 150px ); margin : auto ; justify-content : center ; } .container {      display : grid ; gap : 22px ; grid-template-columns : repeat ( auto-fit , minmax ( 250px , 1fr )); }

Python 변수

지역 변수 a 전역 변수 밖에서 선언한 변수를 사용할 때 앞에 global 을 붙여준다     global a