Last active
August 29, 2015 14:20
-
-
Save magical/12ec5f92439639d1cadb to your computer and use it in GitHub Desktop.
tuples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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