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

Data Types in Python

The document outlines the purpose of data types in Python, which is to allocate memory space for program inputs. It identifies 14 data types in Python, classified into six categories: Fundamental, Sequential, List, Set, Dict, and None. Each category includes specific data types such as int, float, str, list, and dict.

Uploaded by

sandip wankhede
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)
27 views1 page

Data Types in Python

The document outlines the purpose of data types in Python, which is to allocate memory space for program inputs. It identifies 14 data types in Python, classified into six categories: Fundamental, Sequential, List, Set, Dict, and None. Each category includes specific data types such as int, float, str, list, and dict.

Uploaded by

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

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

Data Types in Python ( Most Imp )


============================================
=>The purpose of Data Types is that to allocate / create memory space for the input
of the program in main memory of the computer .
=>As we know that Python is one of the Dynamically Typed Programming Language, we
need to learn, which data types are avaialble in Python and their purposes for
developing real time applications.

=>Python Programming Contains 14 data types and they are classified into 6 types.

I . Fundamental Data Types


--------------------------------------------
1. int
2. float
3. bool
4. complex
--------------------------------------------
II . Sequential Data Types
----------------------------------------------
5. str
6. bytes
7. bytearray
8. range
--------------------------------------------
III. List Data Types (Collection Data Type)
-------------------------------------------------
9. list
[Link]

IV. Set Data Types (Collection Data Type)


-------------------------------------------------
11. set
[Link]
--------------------------------------------
V. Dict Data Type (Collection Data Type)
----------------------------------------------
13. dict
--------------------------------------------
VI. None Data Types
--------------------------------------
14. None

You might also like