what is Python Tuple
Definition
One of the data structure in python.
Almost same as List But Tuple is not editable.
Object.index structure
same as List indexing
How to use
a = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
characteristic
Tuple is not editable.
Examples
declaration
u...
eunhanlee.hashnode.dev1 min read