Home > Software engineering >  how to adding a numpy array to a list of numpy areas
how to adding a numpy array to a list of numpy areas

Time:11-23

I have a list of np arrays:

a= np.array([1,2,3,4,5,6])
b= np.array([7,4,2,3,4,5])
A_final = [a,b]

i have an extra numpy array:

c= np.array([11,12,13,14,15,16,17,14,12,13,14,15]).reshape(6,2)

How do i add this onto A_final?

CodePudding user response:

I love this site and these comments. I am new to python and I good faith I ask a question. I think its wrong it adds no value to the site, and to my understanding this site was about help?

but ofcourse to Mr. know it all it is worthless...

CodePudding user response:

comments like "look in the manual" are really priceless!

  • Related