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 trialTess McCoy
Courses Plus Student 268 PointsTask 1 of 2 Challenge Indexes create new variable varl. Make sure index value 5 is "t."
My code: varl = "badset" varl[5] I'm getting a NameError. However, this code works perfectly in the workspaces.
2 Answers
james south
Front End Web Development Techdegree Graduate 33,271 Pointsit's not asking you to slice anything, just set the variable var1 (it looks like you may have varl, not var1) to something where the 5th index is a t.
Steven Parker
231,248 PointsYou just have a typo.
You wrote "varl" (with the lower-case letter "l") instead of "var1" (with the number "1").
Be careful about testing a challenge in an external REPL or workspaces.
If you have misunderstood the challenge, it's also very likely that you will misinterpret the results.