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 trialJohn Shockey
45,061 Points[SOLVED] Stuck on task 2 of 2
Now make a variable named areas that calculates the area of each item in dimensions using your area function. You should do this with a list comprehension.
dimensions = [ (5, 5), (10, 10), (2.2, 2.3), (100, 100), (8, 70), ]
def area(dimensions): return dimensions[0] * dimensions[1]
areas = ???
dimensions = [
(5, 5),
(10, 10),
(2.2, 2.3),
(100, 100),
(8, 70),
]
def area(dimensions):
return dimensions[0] * dimensions[1]
areas =
3 Answers
Steven Parker
231,268 PointsCongrats! Now mark your title with [SOLVED] as an alternative to selecting a best answer.
John Shockey
45,061 PointsHey Steven,
Would you be able to help me with this? https://teamtreehouse.com/community/completely-stuck-on-task-4-of-4
Kudakwashe Mungwariri
4,951 Pointshi guys,i dont know whats wrong here.Please help
'Error:areas contains some incorrect values.'
dimensions = [ (5, 5), (10, 10), (2.2, 2.3), (100, 100), (8, 70), ]
def area(x): for a in x: a*a return a*a
areas = [area(a) for a in dimensions]
aziztovbaev
23,252 PointsInstructions are tricky... It's solved with list() method.
areas = list(map(area, dimensions))
John Shockey
45,061 PointsJohn Shockey
45,061 PointsFIGURED IT OUT! Just had to read the python docs.
areas = [area(x) for x in dimensions]