Here is a quick list of data types present in python. The mutable and immutable data types are popular for interviews.
ON THIS PAGE
Here’s a list of Python data types
1. Mutable data types
The top mutable data types are List, Dictionary, and Set. So mutable data types allow you to modify.
2. Immutable data types
The top immutable data types are int, Tuple, complex, Float, string, Bytes, and Stringfrozen-set.
3. Primitive data types
Here are the basic data types in python. From which derived other data types. These are Integers, Float, Booleans, and Strings.

4. Built-in data types
The built-in data types are Dictionary, List, Set, Frozenset, and Tuple. The str, bytes, and bytearray are built-in classes.
5. Sequential data types
In these, you can store data in an orderly manner. These include Strings, byte sequences, bytearrays, lists, tuples, and range objects.
6. Compound data types
The compound data type stores multiple independent values. These are Lists, Structures, Pointers, Hashes, and Object references.
Related
References
You must be logged in to post a comment.