array to list pytho code example Example 1: ndarray to list a = np.array([1, 2]) a.tolist() Example 2: python array to list a = np.array([1, 2]) list(a)