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 trialTimothy Maycock
Courses Plus Student 3,346 PointsWhy "NONE"
My code passes the check yet when I run it through VSC it returns NONE as the values. Tried googling it to understand why this happens but couldn't get a good answer. Any help in understanding this would be greatly appreciated.
Cheers
my_list = []
for i in range(10):
print(my_list.append(i))
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Timothy Maycock! The code challenge itself doesn't ask you to print
anything. What you're doing here, is printing the result of the .append
method. That method adds an item to a list, but it has a return
type of None
.
But if you modified what and where you are printing, then your results would be wildly different.
Try this:
my_list = []
for i in range(10):
my_list.append(i)
print(my_list)
Hope this helps!
Timothy Maycock
Courses Plus Student 3,346 PointsTimothy Maycock
Courses Plus Student 3,346 PointsHi Jennifer
Ok. With your explanation and code snippet I see where I went wrong. Happy I asked as when I clicked the check work button, it gave me a passing result, even though my code was the wrong solution.
Thanks for clarifying it for me
Cheers