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 trialHarjan Anand
780 Pointshow do i assign the third element?
This is my code
# insert your code here
my_tuple = ('I', 'love', 'python', 'item3',)
item3 = e
Harjan Anand
780 PointsI just dont know what to do next thats all?
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey 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!!!
Harjan Anand
780 PointsI understand but how do i assign the item3 to the third element to my_tuple
Harjan Anand
780 PointsI uptated my code:
# insert your code here
my_tuple = ('I', 'love', 'python',)
item3 = [3]
my_tuple[3]
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close. The last line should be:
item3 = my_tuple[3]
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsThe tuple from Task 1 should not be changed.