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 trialKiran P
Courses Plus Student 919 PointsBug
I ran below code in Python terminal; It just worked fine. I don't know why Treehouse didn't let me to continue. Please review the below code.
def loopy(items): # Code goes here for item in items: if item[0] == 'a': continue else: print item
def loopy(items):
# Code goes here
for item in items:
if item[0] == 'a':
continue
else:
print item
2 Answers
andren
28,558 PointsYour code is valid in Python 2, but not in Python 3 which is what is taught at Treehouse.
Python made some pretty big changes when they moved to version 3, one of which was that print
which used to be a statement was changed to be a function instead. Functions have to be called using parenthesis, and the data you pass them has to go between those parenthesis.
Like this:
def loopy(items):
# Code goes here
for item in items:
if item[0] == 'a':
continue
else:
print(item)
Kiran P
Courses Plus Student 919 PointsThank you Andren!