meta data for this page
  •  

This is an old revision of the document!


collections

  • List []
    • ordered, indexed, allow duplicate items
    • mutable
  • Tuple ( 1, “A”, True)
    • ordered, indexed, allow duplicate items
    • immutable
  • Set
    • unordered, unindexed, no duplicate items
    • items are immutable
    • set is mutable (add/remove items)
  • Dictionary []
    • ordered (from v3.7)
    • mutable
    • no duplicate items