Python Identifier le tableau

import numpy as np
mat = np.array([[1,2],[3,4]])
print(mat)
Nazário