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

I don't understand this assignment

Hey!

I wan't to complete this assignment but I just don't get what I'm supposed to do.

Can somebody explain what I need to do here?

twoples.py
def multiply(*args):

    total = 0;

    for value in args:
        total *= value

    return total

2 Answers

Trevor J
seal-mask
.a{fill-rule:evenodd;}techdegree
Trevor J
Python Web Development Techdegree Student 2,107 Points
def multiply(*args):
    result = args[0] # This gets the first arg
    # Then iterate over the remaining args using slice.
    for arg in args[1:]:
        result *= arg
    return result

Ok thanks! I get it now :)

Marco’s code works if you change the initial value, total, from 0 to 1. This is because 1*a = a whereas 0*a = 0. This also avoids slicing.