Skip to content

Instantly share code, notes, and snippets.

@magical
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magical/12ec5f92439639d1cadb to your computer and use it in GitHub Desktop.
Save magical/12ec5f92439639d1cadb to your computer and use it in GitHub Desktop.
tuples
# NOT A TUPLE
1 # NOT A TUPLE
1, 2 # a 2-tuple
1, 2, 3 # a 3-tuple
, # SYNTAX ERROR
1, # a 1-tuple
1, 2, # a 2-tuple
1, 2, 3, # a 3-tuple
() # an empty tuple
(1) # NOT A TUPLE
(1,2) # a 2-tuple
(1,2,3) # a 3-tuple
(,) # SYNTAX ERROR
(1,) # a 1-tuple
(1, 2,) # a 2-tuple
(1, 2, 3,) # a 3-tuple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment