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 trialWilfredo Casas
6,174 PointsError 'list' object is not callable
I was playing with the list() function so I can understand it better, but when I try to print the aaa list, this callable error comes by. Why can't I print it?
aaa = list('listo') print(aaa)
Error 'list' object is not callable
1 Answer
Kourosh Raeen
23,733 PointsBefore running aaa = list('listo') have you by any chance run something like: list = list('listo') ? If yes, then that has shadowed the built-in name list.