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
print(data) Article
An ordered collection of items.
| Homogenous? | No |
|---|---|
| Static/dynamic? | Static |
| Mutable? | No |
data = (1, 4, 7)
print(data)
data[3] = 4 # immutable, will throw error
print(data)