Python
  • Initial page
  • Skills & Concept
    • Function
    • Generator
    • Class
    • Asyncio
    • Interface
    • Decorator
    • Maxin
    • Abstract Base Class
    • MemoryView
  • Magic methods
    • What is Magic Methods?
  • Data Structure
    • Data Structure in Python
    • List & Tuple
    • Named Tuples
    • Slicing in Sequence
    • Queue & Dequeue
    • Ordered Dict
    • Linked list
  • Writing Test Case
    • How to write Test case
    • Testing a Flask End-point
  • Libraries
    • Flask and Gunicorn
      • Flask JWT
      • Flask Limiter
      • Flask Rest
Powered by GitBook
On this page

Was this helpful?

  1. Data Structure

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.

PreviousWhat is Magic Methods?NextList & Tuple

Last updated 6 years ago

Was this helpful?