import numpy as np b = np.empty(2, dtype = int) print("Matrix b : ", b) a = np.empty([2, 2], dtype = int) print(" Matrix a : ", a) c = np.empty([3, 3]) print(" Matrix c : ", c)