Python Forum
Which method for arrays is faster ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Which method for arrays is faster ?
#1
Hello everyone,
I hope you are well.

I wonder which of those two methods for dealing with arrays would be faster in python:
method 1: define array at the beginning of the code as np.zeros for example, then fill the elements x[1] , x[2] ... etc, within the code.
method 2: define array at the beginning of the code as empty array: x = [] , and then fill the elements x[1] , x[2] ... etc, within the code.

Thanks
Reply


Messages In This Thread
Which method for arrays is faster ? - by thunderspeed - Aug-30-2021, 11:58 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020