Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python deconstruct tuple

#Construct a tuple
tuple = ('A', 12)
#Deconstruct the tuple
(elt, val) = tuple
 
PREVIOUS NEXT
Tagged: #python #deconstruct #tuple
ADD COMMENT
Topic
Name
6+1 =