Python: working with tuples

Example:

t = (1, "two", 3.0)
Tuples are immutable sequences in Python.

Solution:

print(t[1])  # Outputs: two

Beginner's Guide to Python