Answers for "list from numpy array"

12

ndarray to list

a = np.array([1, 2])
a.tolist()
Posted by: Guest on April-06-2020
1

convert list to numpy array

import numpy as np
npa = np.asarray(Lists, dtype=np.float32)
Posted by: Guest on January-18-2021
2

numpy array from list

>>> a = [1, 2]
>>> np.asarray(a)
array([1, 2])
Posted by: Guest on September-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language