Python Tutorials · Python Data Types

Python Data Types

Learn all about Python Data Types in this comprehensive tutorial.

5 min read beginner
  • In programming, data type is an important concept.
  • You can get the data type of any object by using the type() function:
  • In Python, the data type is set when you assign a value to a variable:
  • If you want to specify the data type, you can use the following constructor functions:

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
None Type:NoneType

Getting the Data Type

You can get the data type of any object by using the type() function:

python

Setting the Data Type

In Python, the data type is set when you assign a value to a variable:

Setting the Specific Data Type

If you want to specify the data type, you can use the following constructor functions:

Module quiz

2 questions
1

Which of the following is true about Python Data Types?

2

What is the most common pitfall when working with Python Data Types?

Answer all questions to submit.