Answers for "code to find the shape of the 2d list in python"

0

code to find the shape of the 2d list in python

from numpy import array
l = [[2, 3], [4, 2], [3, 2]]
a = array(l)
print a.shape
Posted by: Guest on August-18-2020

Code answers related to "code to find the shape of the 2d list in python"

Python Answers by Framework

Browse Popular Code Answers by Language