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 trial

Python Python Basics (2015) Shopping List App Shopping List Introduction

João Pedro Bento
seal-mask
.a{fill-rule:evenodd;}techdegree
João Pedro Bento
Python Development Techdegree Student 440 Points

I 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.

Looks 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)

your code is working absolutely fine make sure you are typing DONE , all letters capital

1 Answer

Jason Wine
PLUS
Jason Wine
Courses Plus Student 3,807 Points

Place the if 'DONE' block prior to appending to the shopping_list