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 Functional Python The Lambda Lambada Partial

help me on this task guyys

stuck at this last challenge

discounts.py
from functools import partial
prices = [
    10.50,
    9.99,
    0.25,
    1.50,
    8.79,
    101.25,
    8.00
]


def discount(price, amount):
    return price - price * (amount/100)
discount_10 = partial(discount, amount=10)
discount_25 = partial(discount, amount=25)
discount_50 = partial(discount, amount=50)
prices= list(map(prices_10, prices_25, prices_50))

1 Answer

Steven Parker
Steven Parker
231,007 Points

Remember that you're creating prices_10, prices_25, and prices_50. So you'll need a line of code for each one, and they will be the terms being assigned to (on the left side).

And it's been a while, so you might want to review how to use Map.