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 trialbeijiayu
Android Development Techdegree Student 11,300 PointsWhat is wrong with my code?
What is wrong with my code?
def loopy(items):
for item in items:
if item.index('a')
continue
print(item)
1 Answer
Michael Lazarz
15,135 PointsWhen using the index value of variables in a FOR Loop you just use the following:
def loopy():
for item in items:
if item[0] == 'a':
continue
print(item)
Using what you have will produce this: ValueError: substring not found
You are asking :
for the item in items
if the item index is 'a'
continue
else print
'a' is not an index value. Index values are 0 and up. 'a' is a String value
Hopefully that made sense for you. I can try and clear it up more if needed.
beijiayu
Android Development Techdegree Student 11,300 Pointsbeijiayu
Android Development Techdegree Student 11,300 Pointsthank you