[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

Healthy Programmmer PROJECT

Difference Between Procedural and Non-procedural Language

Dictionary Practice Question