Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Introducing Tuples Getting to Know Tuples Creating Tuples

David Sanchez
David Sanchez
623 Points

Tuple - Challenge

Could someone please assist with this coding challenge? I don't believe I understand what I'm supposed to do here since tuples are immutable, how should i add an element to one?

creating_tuples.py
my_tuple = ('I', 'love', 'python')

1 Answer

Josh Keenan
Josh Keenan
19,652 Points

It just wants you to save the value of the third element of the tuple to the variable item3. You can't change the value of a tuple element, but you can access them.