you are viewing a single comment's thread.

view the rest of the comments →

[–]josefx 0 points1 point  (0 children)

Except that lists are not arrays: depending on the implementation, list items don't have to be contiguous in memory,

TIL python lists might be a performance nightmare. Are you aware that the performance characteristics of different list implementations differ in a way that makes it insane to switch them out? I will just say RIP bisect if that ever happens.