Python Tuple Exercises

Let’s check out some exercises that will help understand tuples better.

Exercise 7-a

Assign the first element of the tuple to answer_1 on line 2


tuple[index]

Correct syntax to call a tuple’s element is brackets with the index number inside next to the tuple’s name: 

 

Index starts with zero.

answer_1 = tt[0]

Exercise 7-b

This time print the third element of the tuple.


0,1,2 … Third element is index 2: [2]

answer_1 = tt[2]

Exercise 7-c

Print the second from the last element of the tuple.


Second from last element has index of -2.

answer_1 = lst[-2]

Need More Exercises?

Check out Holy Python AI+ for amazing Python learning tools.

*Includes 14 more programming languages, inspirational tools and 1-on-1 consulting options.
Umut Sagir
Finance & Data Science Professional,
Founder of HolyPython