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 trialMartin Shaningwa
2,123 PointsContinents Task 1: How can I reduce the elements in the output of a list?
I cannot use del() to limit the result, please help.
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for cont in continents:
cont = continents[0:2]
print("* " + (cont[0]))
print("* " + (cont[1]))
1 Answer
Steven Parker
231,198 PointsFor task 1, you don't need to limit the result, you should print out every item.
And for task 2, you don't need to alter the list itself, just control which items print. An "if" statement would be good for that.
And you'll only need one "print" statement. Also, the loop sets "cont" for you, you won't need to assign it with slices.
Martin Shaningwa
2,123 PointsMartin Shaningwa
2,123 PointsThank you Steven, well explained there, thus i managed to solve the challenge.