Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (55.6k points)

Can anyone tell me why use linked lists in Python?

1 Answer

0 votes
by (119k points)

A linked list saves memory. It allocates the only memory which is needed for values to be stored and no need to set the size before storing it with values. In simple words, Linked lists are used to avoid potential waste memory.

I recommend enrolling in this Python Training Course by Intelllipaat to learn Python.

Also, you can watch this video on the linked list in Python:

Browse Categories

...