Login
Remember
Register
Ask a Question
Is Python List A Linked List?
0
votes
asked
Dec 19, 2019
in
Python
by
sharadyadav1986
Is Python List A Linked List?
#python-linked-list
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 19, 2019
by
rajeshsharma
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.
...