Introduction
Introduction to advanced data types
Python has a rich built-in data types used to store a collection of data or values.
With the following features:
1. Mutable data types: These data types are flexible and adapts to modification, makeing them suitable for storing data that can be changed later, these includes list
, dict
, and sets
.
2. Immutable data types: These data types are useful for storing a collection of constant, that don’t need to be modified later, these includes tuple