Python·100 questionsWhat are the differences between lists, tuples, sets?SaveUpdated: 2026-08-31Answer•List — mutable: [1,2,3].•Tuple — immutable: (1,2,3).•Set — no duplicates: {1,2,3}.•Dictionary — key-value pairs.•Tuples are hashable.Ask AI to clarifyWas this answer helpful?HelpfulNot helpfulSuggest an improvement