In Python, data types are categorized into two groups based on their ability to be changed after creation:
Mutable: Can be changed after creation (e.g., list, set, dict, bytearray, array)
Immutable: Cannot be changed after creation (e.g., int, floa...