An ordered collection of items.

Traits

Homogenous?No
Static/dynamic?Static
Mutable?No

Example

Usage

data = (1, 4, 7)
print(data)
 
data[3] = 4 # immutable, will throw error