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
- 3d
- MESH
- pyvista
- 패치분할
- Python
- 파이썬
- 컨테이너
- 지하철역좌표
- Set
- 알고리즘
- 도커
- geojson
- 귀여운고래
- GIS
- 3d데이터
- 이미지빌드
- GNN
- 동명이인찾기
- 그리드분할
- GCN
- geopandas
- 도커 레이어
- 폴더조사
- osmnx
- 데이터입수
- 좌표거리
- python최단거리
- graph
- STL
- docker
Archives
- Today
- Total
이것저것 기록
[python] list to array, array to list 본문
List에서 Array로 변경하고, Array에서 List로 변경하는 방법을 알아보자.
1. List --> Array
import numpy as np
my_list = [2,4,6,8,10]
my_array = np.array(my_list)
# printing my_array
print my_array
# printing the type of my_array
print type(my_array)
np.array( )안에 내가 array로 바꾸고자 하는 list를 넣어주면 된다.
2. Array --> List
import numpy as np
my_array = np.random.rand(4)
re_list = my_array.tolist()
print(re_list.shape)
.tolist( )앞에 가 list로 바꾸고자 하는 array의 변수명을 넣어주면 된다.
'코린이 > 코딩 기초 & 알고리즘 공부' 카테고리의 다른 글
[python] 딕셔너리(dict) 기초 (0) | 2020.10.09 |
---|---|
[python] print 문자열 formatting (0) | 2020.10.09 |
[python] 폴더에서 원하는 파일 형태만 불러오기 (0) | 2020.10.09 |
[python] 두 개 이상의 list 비교하기 (0) | 2020.10.08 |
[python] 디렉토리 경로 - 절대경로, 상대경로, 현재경로 (0) | 2020.09.22 |
Comments