๐
Tuple data structuer
Some important notices about tuples.
python
i_tuple = (1,2)x,z = i_tuple # unpacking tupleprint(x,z) #output : 1,2x,y,z = i_tuple #error
Some important notices about tuples.
i_tuple = (1,2)x,z = i_tuple # unpacking tupleprint(x,z) #output : 1,2x,y,z = i_tuple #error
