Deklaruj Python Matrix Numpy Zeros

import numpy as np
dimensions = (3, 3)
np.zeros(dimensions) # 3x3 zeros matrix
Anxious Alligator