Difference btwn List, Tuple, Dict, Set, FrozenSet

List: They are mutable, values can be modified

Tuple: They are immutable, values can't be changed

Dict: They are mutable, values can be modified, every value contains a key

Set: They are mutable, values can be modified but contains only the unique values

FrozenSet: They are immutable, values can't be modified; contains only the unique values

Last updated