Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

João Pedro Bento
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,319 PointsHenrik Christensen
Python Web Development Techdegree Student 38,319 PointsAny chance you could format your code?
click the Markdown Cheatsheet link just under the textfield to see how to format the code.