Code, um die Form der 2D -Liste in Python zu finden

from numpy import array
l = [[2, 3], [4, 2], [3, 2]]
a = array(l)
print a.shape
Crowded Capybara