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 Continue

skipping an item in a list at an index using a loop

would want to skip an item in a list at index [0] using a loop or else print the current item

breaks.py
def loopy(items):
    # Code goes here
    for item in items[0]:
        continue
    else:
        print(items)

1 Answer

You're using your for loop as a condition. I'll give you two hints. One your for loop only runs once as 'items[0]' is a single element. You would want to loop through the entire items list. The second is that to implement a conditional statement, you must separate out your loop from the condition! Also make sure you're printing the right thing!

You should end up with something like this:

def loopy(items):
    for item in items:
       if #add your condition here:
          continue
       else:
          print(item)