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
- Class
- java
- 자바
- Data Structure
- 코테
- bit manipulation
- Counting
- Method
- Matrix
- hash table
- SQL
- simulation
- Math
- Stack
- Binary Tree
- 구현
- greedy
- sorting
- Binary Search
- database
- string
- 코딩테스트
- 파이썬
- dynamic programming
- geometry
- Number Theory
- implement
- Tree
- array
- two pointers
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