Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 134 Bytes

File metadata and controls

9 lines (7 loc) · 134 Bytes

Chapter 07: Tuples & Sets

Tuple

  • Ordered, immutable.
  • Syntax: (1,2,3)

Set

  • Unordered, unique elements.
  • Syntax: {1,2,3}