+1 vote
in NumPy by
How to use of concatenate()

1 Answer

0 votes
by
x=np.array([[1,2],[3,4]])

y=np.array([[5,6]])

z=np.concatenate((x,y))

print(“array of z value is : \n”,z)

Related questions

+1 vote
asked Jul 8, 2021 in NumPy by rajeshsharma
+2 votes
asked Jul 3, 2021 in NumPy by sharadyadav1986
...