kode untuk menemukan bentuk daftar 2D dalam python

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