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 Reduce

Functional Python

We have a bunch of prices and sales numbers and we need to find out our total earnings.

Let's start by writing a function named product_sales that takes a single two-member tuple made up of a price and a number of units sold. product_sales should return the product of the price and the number of units.

help im lost

prices.py
prices = [
    (6.99, 5),
    (2.94, 15),
    (156.99, 2),
    (99.99, 4),
    (1.82, 102)
]
def product_sales((price, unit)):
    price, unit = passed_tuple

1 Answer

Megan Amendola
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Megan Amendola
Treehouse Teacher

Hi! Let me break this down.

  • Let's start by writing a function named product_sales - check! This is correct
  • that takes a single two-member tuple - you should have a single argument in your function, right now you have two inside of a set of extra parentheses
def product_sales(passed_tuple):
  • made up of a price and a number of units sold. - the tuple that is going to be passed in will be made up of these two values
  • product_sales should return the product of the price and the number of units. - you should return the product (*) of the two values that are inside of the tuple
def product_sales(passed_tuple):
    price, units = passed_tuple
    return price * units

I hope this helps!