[2D ARRAY ] Two Dimensional Numpy Array using array Function in Python

 



from numpy import*
ks=array([[10,45,6],[4,8,9]])

for r in ks:
for c in r:
print(c)
print()

Comments

Popular posts from this blog

React Installation with Vite and Tailwind css (Steps to Installation)

Insert Data In mongoDb

Class methods as an alternative Constructor