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 Second Shopping List App

Chris Sederqvist
Chris Sederqvist
7,596 Points

You don't need to add continue in the loop!

This code works fine without the continue statement in the loop:

shopping_list = []

def print_help():
    print("""
Enter 'DONE' to stop entering items.
Enter 'SHOW' to list items.
Enter 'HELP' to display help.
""")

def print_list(lst):
    for item in lst:
        print(item)

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
    elif new_item == 'SHOW':
        print_list(shopping_list)
    elif new_item == 'HELP':
        print_help()
    else:
        shopping_list.append(new_item)

print("Here's your list:")
print_list(shopping_list)

Continue is the default when we use if/elseif/else in this manner.