You access tuple elements exactly like list elements, using square brackets and indices: python colors = ("red", "green", "blue") first = colors[0] # "red" last = colors[-1] # "blue" Indices start at .
Negative indices count from the end. This works identically to lists. You can also use len() to get the tuple's length: len(colors) returns . And you can check membership with in: "green" in colors returns True.