728x90
반응형
배열의 데이터 타입 dtype
파이썬 리스트와 달리 같은 데이터 타입만 저장가능(단일 데이터)
arr = np.array([0, 1, 2, 3, 4], dtype=float)
print(arr) # [0. 1. 2. 3. 4.]
print(arr.dtype) # 'float64'
print(arr.astype(int)) # [0 1 2 3 4]
데이터 타입
dtype | 설명 | 다양한 표현 |
int | 정수형 타입 | i, int_, int32, int64, i8 |
float | 실수형 타입 | f, float_, float32, float64, f8 |
str | 문자열 타입 | str, U, U32 |
bool | 부울 타입 | ?, bool_ |
반응형
'프로그래밍 > Python' 카테고리의 다른 글
Pandas와 Series 데이터란? (0) | 2021.09.23 |
---|---|
Numpy 배열의 속성 (0) | 2021.09.14 |
Numpy란? (0) | 2021.09.10 |
파이썬 모듈 사용 방법 (0) | 2021.09.09 |
파이썬 클래스와 인스턴스 (0) | 2021.08.13 |