Python mendekonstruksi tuple
#Construct a tuple
tuple = ('A', 12)
#Deconstruct the tuple
(elt, val) = tuple
Svartorm
#Construct a tuple
tuple = ('A', 12)
#Deconstruct the tuple
(elt, val) = tuple