forked from hariom20singh/python-learning-codes
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuilt_In_DataType
More file actions
Latest commit
14 lines (11 loc) · 433 Bytes
/
Copy pathBuilt_In_DataType
File metadata and controls
14 lines (11 loc) · 433 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Built-in Data Types
In programming, data type is an important concept.
Variables can store data of different types, and different types can do different things.
Python has the following data types built-in by default, in these categories:
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview