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 trialshawn deppe
4,919 Pointsindex
I'm not really sure what it wants me to do. "Let's practice with indexes! Make a new variable named var1 that is either a list or a string. Make sure that var1[5], the item with an index value of 5, is the letter "t"." I keep getting this message "Bummer! NameError: name 'var1' is not defined"
varl = 'abcdet'
varl.index(t)
2 Answers
Alexander Davison
65,469 PointsYour code looks fine.
Try getting rid of the last line of code since the code challenge already checks if "t" is at index 5. :)
Good luck! ~alex
Jackson Lai
3,538 PointsYou don't have to put var1.index(t) in your code for this exercise and please note that when you use .index you shouldn't use (), you will get NameError for this. You have to put like this ('t').