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

how do i assign the third element?

This is my code

create_tuple.py
# insert your code here
my_tuple = ('I', 'love', 'python', 'item3',) 
item3 = e

I just dont know what to do next thats all?

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Harjan Anand, a tuple is an index container. Each item can be referenced by its index.

The first item is my_tuple[0], the second is my_tuple[1], etc.

Post back if you need more help. Good luck!!!

I understand but how do i assign the item3 to the third element to my_tuple

I uptated my code:

# insert your code here
my_tuple = ('I', 'love', 'python',) 
item3 = [3]
my_tuple[3]
Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

You are very close. The last line should be:

item3 = my_tuple[3]