Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python convert list of lists to array

# Basic syntax:
numpy.array(list_of_lists)

# Example usage:
import numpy as np
list_of_lists = [[1, 2, 3], [4, 5, 6]] # Create list of lists
your_array = np.array(list_of_lists) # Convert list of lists to array
your_array
--> array([[1, 2, 3],
           [4, 5, 6]])
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #convert #list #lists #array
ADD COMMENT
Topic
Name
9+3 =