이것저것 기록

[python] list to array, array to list 본문

코린이/코딩 기초 & 알고리즘 공부

[python] list to array, array to list

anweh 2020. 10. 8. 21:49

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의 변수명을 넣어주면 된다. 

 

 

 

Comments