# WE CAN USE NUMPY FOR THIS
import numpy as np
np.zeros(5) # Creates an array [0., 0., 0., 0., 0.]
# For integer array of zeros
np.zeros((5,), dtype=int) # Creates array [0, 0, 0, 0, 0]
import numpy as np
b = np.zeros(2, dtype = int)
print("Matrix b :
", b)
a = np.zeros([2, 2], dtype = int)
print("
Matrix a :
", a)
c = np.zeros([3, 3])
print("
Matrix c :
", c)
np.zeros((2, 1))
array([[ 0.],
[ 0.]])