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 trialDaniel Lounsbury
1,744 PointsHow do I print only the items from a list that start with the letter "A"
as part of this 2 last challenge task 1 is to print all continents, task 2 is to print only continents that begin with the letter "A", I got part 1 correct but part 2 seems to be eluding me.
continents = [ 'Asia', 'South America', 'North America', 'Africa', 'Europe', 'Antarctica', 'Australia', ]
task 1
print("continents:") for continent in continents: print ("* " + continent )
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
print("continents:")
for continent in continents:
print ("* " + continent )
1 Answer
Taurai Valentine Maputsa
16,213 PointsOn task 2 you only need one print to pass the challenge. Try this one:
for continent in continents:
if continent[0] == 'A':
print("*", continent)
Marek Ostrowski
16,268 PointsMarek Ostrowski
16,268 PointsOmg it was so simple
I was searching for answer and managed to pass this task with much more complicated code
a_list = [cont for cont in continents if cont.startswith('A')] for cont in a_list: print("* " +cont)