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 trialJoão Pedro Bento
Python Development Techdegree Student 440 PointsI did exactly the same as Kenneth Love but when the program print my shopping list is displays "DONE"!
I did exactly the same as Kenneth Love but when the program print my shopping list is displays "DONE" instead of my shopping list.
My code:
shopping_list = [] print("What should we pick up at the store?") print("Enter 'DONE' to stop adding items.") while True: new_item = input("> ")
if new_item == 'DONE': break
shopping_list.append(new_item) print("Shopping List:") for item in shopping_list: print(item)
Maybe the ''break'' is stopping the rest of the program... Can someone help me? Thanks.
Sashi Shah
2,528 PointsLooks like it may be an indent issue. Your code works for me--it doesn't print DONE.
shopping_list = []
print("What should we pick up at the store?")
print("Enter 'DONE' to stop adding items.")
while True:
new_item = input("> ")
if new_item == 'DONE':
break
shopping_list.append(new_item)
print("Shopping List:")
for item in shopping_list:
print(item)
Akshay Kap
689 Pointsyour code is working absolutely fine make sure you are typing DONE , all letters capital
1 Answer
Jason Wine
Courses Plus Student 3,807 PointsPlace the if 'DONE' block prior to appending to the shopping_list
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsHenrik Christensen
Python Web Development Techdegree Student 38,322 PointsAny chance you could format your code?
click the Markdown Cheatsheet link just under the textfield to see how to format the code.