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

Tom Finet
Tom Finet
7,027 Points

I don't understand what it means when it says varl is not defined. It is!?

this is what I wrote:

varl="adceut"

then it says the variable varl is not defined

index.py
varl = 'adceut'

2 Answers

Tobias Helmrich
Tobias Helmrich
31,602 Points

Hey Sarah,

actually your code is correct, the only problem is that the variable should be called "var1" and not "varl", so it's a one instead of a "l". But it's really a bit difficult to see the difference with the monospace font. I hope that helps! :)

Tom Finet
Tom Finet
7,027 Points

thank you very much Tobias Helmrich