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 Introducing Lists Using Lists Continental

how do i print out certain items from a list

i'd like you to now print continents starting with letter A only

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
    print("* " + continents[0])

1 Answer

Steven Parker
Steven Parker
229,732 Points

To print out only certain items, you can control when the "print" runs by using an "if" statement.

In this case, you would create a conditional expression for the "if" that compares the first letter of the word (selected by indexing with brackets) to the letter "A".

But you will still need the loop that you used to pass task 1!