How are tuples different from lists?
Answer:
The difference between tuples and lists in Python is that tuples are immutable and lists are mutable. This means that tuples cannot be changed after they are created, but lists can be modified, added, or removed elements.