3D Numpy Array Creation || 3D Array || Python
In this we are going to see a basic program on 3D numpy array creation in Python Programming Language.


import numpy as np

i = 3
j = 3
k = 3

array= np.ones((i, j, k))

print(array)

# Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post