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.
