cara yang rapi untuk mencetak array 2D

import numpy as np
A = [['A', 'B'], ['C', 'D']]
print(np.matrix(A))
Nikhil Reddy