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 Python Collections (2016, retired 2019) Tuples Packing

Alan Kuo
Alan Kuo
7,697 Points

Multiple Return Values

Let's play with the *args pattern.

Create a function named multiply that takes any number of arguments. Return the product (multiplied value) of all of the supplied arguments. The type of argument shouldn't matter.

Slices might come in handy for this one.

English is my second language so I don't understand the question.

Does it want me to multiply all the arguments that's in my variable?

1 Answer

Noah Wasserman
Noah Wasserman
955 Points

it wants you to make a function that multplies numbers put in for example if you were to say print(multiply(2,5)) it should output 10.