top of page
Python: Data Types
In programming, the data type is an important concept.
Variables can store data of different types, and different types can do different things.
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
Getting the Data Type
You can get the data type of any object by using ():
Print the data type of the variable x:
x = 7
print(type(x))
bottom of page