Kod, aby znaleźć kształt listy 2D w Python
from numpy import array
l = [[2, 3], [4, 2], [3, 2]]
a = array(l)
print a.shape
Crowded Capybara
from numpy import array
l = [[2, 3], [4, 2], [3, 2]]
a = array(l)
print a.shape