0% found this document useful (0 votes)
8 views1 page

Data Types in Python Programming

The document outlines the purpose of data types in Python, which is to allocate sufficient memory space for storing input. It categorizes Python data types into six groups: Fundamental, Sequence, List, Set, Dict, and NoneType, detailing specific types within each category. These categories include various data types such as int, float, str, list, set, and NoneType.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Data Types in Python Programming

The document outlines the purpose of data types in Python, which is to allocate sufficient memory space for storing input. It categorizes Python data types into six groups: Fundamental, Sequence, List, Set, Dict, and NoneType, detailing specific types within each category. These categories include various data types such as int, float, str, list, set, and NoneType.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

===============================================================

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
----------------------------------------------------

You might also like