0 votes
in Python by
Is Python List A Linked List?

1 Answer

0 votes
by
A Python list is a variable-length array which is different from C-style linked lists.

Internally, it has a contiguous array for referencing to other objects and stores a pointer to the array variable and its length in the list head structure.

Related questions

0 votes
asked Jun 12, 2020 in Python by Robindeniel
0 votes
asked Jun 28, 2020 in Python by Robindeniel
...