python-data-structures/README.md at master · manumathew23/python-data-structures · GitHub
Skip to content

Latest commit

 

History

History
25 lines (11 loc) · 630 Bytes

File metadata and controls

25 lines (11 loc) · 630 Bytes

python-data-structures

Basics of python data structures of teaching purpose in bootcamp

Python has four basic inbuilt data structures namely Lists, Dictionary, Tuple and Set. Other data structures can be implemented using these inbuilt strucutres such as stack, queue etc.

Lists

A data structure that holds an ordered collection of item.

Dictionary

Dictionary in Python is an unordered collection of data values stored as key value pairs.

Tuple

In simple words, immutable lists. (Data in tuple cannnot be modified).

Set

Unordered collection of unique objects. Supports mathemtacical set oerations.