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 trialBlue Miles
5,826 PointsI don't understand why this is wrong
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.
def multiply(*args):
product = 1
for arg in args:
product *= arg
return product
1 Answer
Steven Parker
231,236 PointsYou code looks good to me! So I tested it by pasting it directly into the challenge and it passed!
One thing that won't show up here is if you've mixed tabs and spaces (Markdown converts it all to spaces). But Python wouldn't like it. See if maybe that's the issue.