“nDarray zu listen” Code-Antworten

nDarray zu listen

a = np.array([1, 2])
a.tolist()
Funny Frog

Python Numpy Array zur Liste

# Basic syntax:
numpy_array.tolist()

# Example usage:
your_array = np.array([[1, 2, 3], [4, 5, 6]])
your_array
--> array([[1, 2, 3],
           [4, 5, 6]])

your_array.tolist()
--> [[1, 2, 3], [4, 5, 6]]
Charles-Alexandre Roy

NP -Array zur Auflistung

# make np array 
np_arr = np.array(['a','b','c'])
# np array to list
py_list = np_arr.tolist()
print(py_list)
# output: ['a','b','c']
Sad Santa

Ähnliche Antworten wie “nDarray zu listen”

Fragen ähnlich wie “nDarray zu listen”

Weitere verwandte Antworten zu “nDarray zu listen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen