반응형
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
- gas
- Kotlin
- Redshift
- array
- Github
- c#
- google apps script
- Apache
- GIT
- Java
- 파이썬
- PySpark
- numpy
- hive
- Excel
- PostgreSQL
- string
- math
- Tkinter
- PANDAS
- Mac
- list
- Google Spreadsheet
- Google Excel
- matplotlib
- Python
- dataframe
- django
- SQL
Archives
- Today
- Total
달나라 노트
Python numpy : tolist (array를 list로 변환. array list) 본문
Python/Python numpy
Python numpy : tolist (array를 list로 변환. array list)
CosmosProject 2021. 12. 29. 00:58728x90
반응형
numpy의 tolist method는 array를 python의 list로 바꿔줍니다.
변경할 때 array의 차원을 그대로 유지합니다.
2차원 array에 tolist를 적용시키면 list속에 다른 list가 있는 2차원 list의 형태로 반환해준다는 의미이죠.
아래 예시들을 봅시다.
import numpy as np
arr_test = np.array(
[1, 2, 3, 4, 5] # 1차 array
)
list_test = arr_test.tolist()
print(arr_test)
print(list_test)
-- Result
[1 2 3 4 5]
[1, 2, 3, 4, 5]
import numpy as np
arr_test = np.array(
[ # 1차 array
[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11, 12, 13, 14, 15] # 2차 array
]
)
list_test = arr_test.tolist()
print(arr_test)
print(list_test)
-- Result
[[ 1 2 3 4 5]
[ 6 7 8 9 10]
[11 12 13 14 15]]
[[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11, 12, 13, 14, 15]]
import numpy as np
arr_test = np.array(
[ # 1차 array
[ # 2차 array
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 3차 array
],
[ # 2차 array
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 3차 array
],
]
)
list_test = arr_test.tolist()
print(arr_test)
print(list_test)
-- Result
[[[1 2 3 4 5]
[1 2 3 4 5]
[1 2 3 4 5]]
[[1 2 3 4 5]
[1 2 3 4 5]
[1 2 3 4 5]]]
[[[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5]], [[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5]]]
728x90
반응형
'Python > Python numpy' 카테고리의 다른 글
Python numpy : random.rand, random.randint, random.randn (난수 생성 모듈, numpy 랜덤 숫자 생성, 표준 정규분포 난수 생성) (0) | 2022.01.02 |
---|---|
Python numpy : min, max (np.min, np.max, 최소값, 최대값) (0) | 2021.12.29 |
Python numpy : copy (array 복사본 생성하기) (0) | 2021.12.29 |
Python numpy : zeros (0으로 채워진 array 생성) (0) | 2021.12.27 |
Python numpy : flatten, flat (array를 1차원으로 변환, 1차원 array indexing) (0) | 2021.12.27 |
Comments