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 Sequences Sequence Operations Finding len, min, max

tashzol
tashzol
1,354 Points

Find 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.

len_min_max.py
student_gpas = [4.0, 2.3, 3.5, 3.7, 3.9, 2.8, 1.5, 4.0]
lenght = len(student_gpas)

2 Answers

length, not lenght

the error message even pointed it out ;)

tashzol
tashzol
1,354 Points

Thanks! How this typo managed to sneak in through all of my doors? :-D...