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 trialLaurence Cimosz
8,993 Pointsbreaks.py code doesn't work
I can't figure this out. I searched the get help forum and nothing worked.
def loopy(items):
for item in items:
# If the first letter of the word is "a", then don't print the word.
if item[0] == "a":
continue
else:
# If the word DOESN'T start with "a", then print the word.
print("word")
1 Answer
Jennifer Nordell
Treehouse TeacherOh you're sooooooooo close!. When they say they want you to print the word, you are very literally printing out "word". What they want is for you to print out any word that doesn't start with 'a'. You're checking item
to see if it starts with 'a'. So if it doesn't, you should print out item
.
Try changing "word" to item
.
Hope this helps!