===============================================================
Data Types in Python Programming
===============================================================
=>The Purpose of Data Types is that " To allocate sufficient Amount of Memory Space
in Main Memory (RAM) of the computer for storing the Input / Literals".
=>In Python Programming, Data types are Classifed into 6 Categories. They are
---------------------------------------------------
I. Fundamental Category Data Types
---------------------------------------------------
1. int
2. float
3. bool
4. complex
---------------------------------------------------
II. Sequnece Category Data Types
---------------------------------------------------
1. str
2. bytes
3. bytearray
4. range
---------------------------------------------------
III. List Category Data Types
---------------------------------------------------
1. list
2. tuple
---------------------------------------------------
IV. Set Category Data Types
---------------------------------------------------
1. set
2. frozenset
---------------------------------------------------
V. Dict Category Data Type
---------------------------------------------------
1.dict
---------------------------------------------------
VI. NoneType Category Data Type
---------------------------------------------------
1. NoneType
----------------------------------------------------