# welcome to softhunt.net
# import numpy
import numpy as np
# using Numpy.expand_dims() function
softhunt = np.array([[1, 2], [7, 8]])
print(softhunt.shape)
softhunt = np.expand_dims(softhunt, axis = 1)
print(softhunt.shape)
y = np.expand_dims(x, axis=(2, 0))
>>> y
array([[[1],
[2]]])
# welcome to softhunt.net
# import numpy
import numpy as np
# using Numpy.expand_dims() function
softhunt = np.array([1, 2])
print(softhunt.shape)
softhunt = np.expand_dims(softhunt, axis = 0)
print(softhunt.shape)
numpy.expand_dims(a, axis)