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 |
Tags
- 파이썬
- 코테
- Stack
- Class
- bit manipulation
- database
- dynamic programming
- Binary Tree
- greedy
- java
- 코딩테스트
- Binary Search
- implement
- SQL
- Math
- Number Theory
- Method
- sorting
- Tree
- string
- simulation
- Counting
- array
- Matrix
- 구현
- two pointers
- geometry
- hash table
- Data Structure
- 자바
Archives
- Today
- Total
목록정수형 (1)
코린이의 소소한 공부노트
데이터 타입, 연산자 (1) 숫자형, 논리형
데이터는 여러 가지 형태로 존재하며, 각각의 타입을 갖고 있다. 그리고 타입마다 연산 방법도 다르다. 이번에 정리할 데이터 타입은 1. 숫자형 2. 논리형이다. 1. 숫자형(Numeric type) 숫자형에는 정수형(Integers: int), 실수형(Floating point numbers: float), 복소수형(complex numbers: complex)이 있다. num_int = 4 # 정수형, int num_float = -58.2 # 실수형, float num_complex1 = complex(3, -1) # 복소수형, complex(실수부, 허수부) num_complex2 = 3-1j # ( ) 풀어서 써도 되고 num_complex3 = -1j+3 # 실수부와 허수부를 바꿔써도 된다. p..
Python
2021. 4. 22. 00:44