import numpy as np # 2d array to list arr_2 = np.array([[1, 2, 3], [4, 5, 6]]) print(f'NumPy Array:\n{arr_2}') list_2 = arr_2.tolist() ...
確定! 回上一頁