Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
10 lines (7 loc) · 776 Bytes

File metadata and controls

10 lines (7 loc) · 776 Bytes

tuple

TODO: ADD MORE DETAIL

See the Python documentation entries for the immutable tuple type and its [constructor][tuple-as-function]. One of Python's sequential collection types, it is fixed in size, but allows homogenous data. Because it cannot be resized it is less flexible than a [list][list], but has the advantage of taking up very little room in memory, compared to any other collection.