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 trialJack Grundy
Courses Plus Student 454 PointsHow can i address this task? I dont now how to bullet list or space variables
N/A
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
list "Asia"
3 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsHey Jack Grundy, the task is looking for a simple asterisk followed by a space then the string. So one output line may be of the form:
β* Asiaβ
Post back if you need more help. Good luck!!!
Jack Grundy
Courses Plus Student 454 PointsIt seems simple but maybe i am running a fromat error. i run like this example:
["* Asia", "* Australia", "Antarctica"]
Chris Freeman
Treehouse Moderator 68,441 PointsCan you update your post with your latest code?
Jack Grundy
Courses Plus Student 454 Pointscontinents = ["* Asia", "* South America", " * North America", "* Africa", "* Europe", "* Antarctica", "* Australia"]
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsOk, I think I understand. The task is asking you to process the given list
continents
and print out a formatted string for each continent. The form of the answer would be:Where your formatted string uses the single
continent
value from thefor
loop, and includes an asterisk and a space before the continent name.Post back if you need more help. Good luck!!!