How can you access the second element of the tuple t = (1, 2, 3)?
t[1]
t[2]
t.get(1)
t(1)
This question is part of this quiz :