Tuples are immutable ordered sequences of elements that are accessed using indexes. They are written with round brackets. Tuples can contain elements of different data types and duplicate values are allowed. Tuples use less memory than lists and their elements cannot be changed once created, though they can be deleted and new tuples can be created. Tuples elements are iterated faster than lists and are well suited for tasks that only require accessing elements.