Utilizor
Contact Us

Python Tuples

Ordered, unchangeable collection.

Examples

Create Tuple

Using round brackets.

thistuple = ("apple", "banana", "cherry")
print(thistuple)

Access Tuple Items

Prints 'banana'.

thistuple = ("apple", "banana", "cherry")
print(thistuple[1])

One Item Tuple

Comma is needed for one item tuple.

thistuple = ("apple",)
print(type(thistuple))

#NOT a tuple
thistuple = ("apple")
print(type(thistuple))

Test Your Knowledge

Python Quiz

No quiz available for this topic yet.