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 Python Basics (2015) Python Data Types Specific Index value

Tess McCoy
PLUS
Tess McCoy
Courses Plus Student 268 Points

Task 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
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

it'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
Steven Parker
229,785 Points

You just have a typo.

You wrote "varl" (with the lower-case letter "l") instead of "var1" (with the number "1").

:warning: 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.