Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 1.01 KB

README.md

File metadata and controls

12 lines (6 loc) · 1.01 KB

Python Inbuilt Data Structures

This repository contains the concept of different inbuilt python data structures and their working in the form of Ipython notebook created for learning purpose.

  • List - A list in python is a one-dimensional, Mutable and Ordered collection of elements.
  • Dictionary -Dictionary in python is Mutable and Unordered colletion of data values which is used to store data values in {key:value} pairs.
  • Tuple - A tuple is a collection of objects which are immutable and ordered.
  • Sets - Set is collection of different elements which are unordered, immutable and unique.