DATA STRUCTURE IN PYTHON

Darji Honey
Jun 16, 2021

Data structure is a way of organizing data. So anyone can used very efficiently. Here efficient means space efficient as well as time efficient

In python there are two types of data structures.
1. Built in data structure
2. User Defined

  1. Built in data structures
    In python there are four built in data structures in Python.
    i. List
    ii. Tuple
    iii. Dictionary
    iv. Set
  2. User Defined
    i. Stack
    ii. Queue
    iii. Linked List
    iv. Tree
    v. Graph

--

--