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 trialkamal coder
40 Pointswhat is variable how should i assign
Create a variable called item3 and assign to it the third element in my_tuple.
my_tuple=('I','love','python')
my_tuple=(item3,)
m
1 Answer
Josh Keenan
20,315 PointsI think this challenge is incredibly poorly worded, it took me a few minutes of reading it over and over and playing with it to figure out what they were wanting. It wants you to take the third value of the tuple and store it in a variable called item3.
my_tuple = ("I", "love", "python")
item3 = my_tuple[2]
We can access values of a tuple by index, but remember they're immutable and can't be changed