4 built-in data types

In Python, lists, sets, tuples, and dictionaries are used to store collections of data. Each has different properties and use cases.

list an ordered, mutable (changeable) collection that allows duplicate values
set an unordered, mutable collection that does not allow duplicates.
tuple an ordered, immutable collection that allows duplicate values
dictionary an unordered, mutable collection that stores key-value pairs.