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

twoples challenge task 1 (*args): code not accepted; works in my shell

See code below. The message I get is: "Bummer: Try again!" I put this code into my interactive shell and it works fine, so I have no idea what test it is failing. Task note says "Slices might come in handy for this." Am I missing something? The task says to take any number of arguments and return the product (multiplied value) of all supplied arguments. Any help?

def multiply(*args): product = 1 for arg in args: product *= arg return product

twoples.py
def multiply(*args):
    product = 1
    for arg in args:
        product *= arg
    return product

1 Answer

I copy/pasted your code into the challenge and it passed

Thanks. I re-typed it into my editor, deleted it from the challenge, reloaded the challenge page, pasted in the text from my editor, and it passed.