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

i don`t understand the question of 2 exercise

what should i do in 2 exercise

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
# Your code here
for continent in continents:
    print("* " + continent)

1 Answer

Hi Shahzodbek,

The second challenge asks that you print only the continents that start with the letter A.

You've done a great job coding the functionality that prints all the continents, so I imagine your issue is either with writing control structures (ie. if conditions) or it's with the logic behind explaining to python how to determine if a continent starts with the letter A.

For the first one, the if condition syntax is much like a for loop.

if True:
    # do this
else:
    # do this

For the second one, to determine if a string starts with a certain letter, you can just compare the first letter of that string to the one you're looking for (because a string is essentially a list of characters).

So this: name = "William" is essentially the same as this name = ["W", "i", "l", "l", "i", "a", "m"]. So if we wanted to check if the first letter of name starts with a "D" we could do something like:

print(name[0] == "D") # output: False

Hopefully, that makes sense and gets you on the right track. Good luck.