Data Structure in Python

A data structure is a specialized format for organizing and storing data. General data structure types include array, linked list, queue, tree, and so on. Any data structure is designed to organize data to suit a specific purpose so that it can be accessed and worked with in appropriate ways.

In Python, there are many useful built-in data structure library. We will take a look on these libraries and understand how they are implemented.

Last updated

Was this helpful?