Read Time:19 Second
Standard Data Types
The data stored in memory can be of many types. Python has various standard data types that are used to define the operations possible on them and the storage method for each of them.
Python has five standard data types −

- Numbers classes (int,float,complex)
- Dictionary (dict)
- Boolean (bool)
- Set (set,frozenset)
- Sequence Type
Average Rating