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 trialSiddharth Pathak
Python Development Techdegree Student 87 Pointsi cant understand why none word coming again and again
this is the snapshot of my workspace
i was making one shopping list and as soon as i add items everything working fine but a word 'NONE' coming continuously
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe function lent
does not have a return
statement, so it defaults to return None
def lent(length):
print("Added! list has {} items".format(length))
return None # <-- default
# The last print statement
print(lent(len(items_list)))
# effectively becomes
print(None)
Two options
Have lent
return the string instead of print it locally
change the last statement into a call to lent
instead of printing the return value.
Post back if you have more questions. Good luck!!