Answers for "numpy from list to array"

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