What is the difference between list and tuple?
Sigiloso
A list is a mutable data structure in Python that allows elements to be added, removed, or modified, while a tuple is an immutable data structure where its elements cannot be changed after creation.