Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

tashzol
1,354 PointsFind the lenght of a list and assign it to a variable, not working
Hi, I am getting this error when trying to check len() of a list. I need to find out len() of the list, and assign it to a variable called lenght. This is simple and normally I know how to do it, but it doesn't get past the "recheck work". What am I doing wrong here?
Bummer: AssertionError: 'length' not found in 'student_gpas = [4.0, 2.3, 3.5, 3.7, 3.9, 2.8, 1.5, 4.0]\nlenght = len(student_gpas)' : Whoops, looks like the variable length was never created. Check your spelling.
student_gpas = [4.0, 2.3, 3.5, 3.7, 3.9, 2.8, 1.5, 4.0]
lenght = len(student_gpas)
2 Answers

Zimri Leijen
11,732 Pointslength, not lenght
the error message even pointed it out ;)

tashzol
1,354 PointsThanks! How this typo managed to sneak in through all of my doors? :-D...