Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mapreduce
- window
- Python
- Express
- MSSQL
- 공정능력
- GIT
- Spring
- es6
- mybatis
- Android
- table
- tomcat
- SQL
- hadoop
- Sqoop
- Eclipse
- Kotlin
- plugin
- react
- SSL
- vaadin
- xPlatform
- 보조정렬
- Java
- JavaScript
- NPM
- SPC
- R
- IntelliJ
Archives
- Today
- Total
728x90
목록2019/05 (7)
DBILITY
python 기본 자료형 및 자료구조
정수형(int) >>> x=123 >>> type(x) >>> x=int(123) >>> type(x) 실수형(float) >>> x='1.0' >>> type(x) >>> x=float(x) >>> type(x) >>> x 1.0 문자열(str) >>> x='python' >>> type(x) >>> x=str('python') >>> type(x) >>> 불리언(boolean) >>> x=True >>> type(x) >>> x=bool(1) >>> type(x) >>> x True >>> x=bool(0) >>> type(x) >>> x False 리스트(list) x = [1,2,3,4,5] 형태로 추가,수정,삭제 가능 x.append(6) 뒤에 6이 추가된다. del x[5] 5번 인덱스의 값이..
python
2019. 5. 4. 11:15
python만 설치할 때는 https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 아나콘다로 설치할 때는 다음과 같다. Anaconda 설치 ( https://www.anaconda.com/distribution ) idle.bat 실행 ( 바탕화면 바로가기 생성 필요) python shell 실행화면 폰트 설정
python
2019. 5. 4. 06:42
728x90