Python
What is the difference between a list and a tuple?
Lists are mutable (can add, remove, modify elements), use square brackets, and cannot be used as dictionary keys.
Lists are mutable (can add, remove, modify elements), use square brackets, and cannot be used as dictionary keys.