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 trialMarco Koopman
5,290 PointsI 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?
def multiply(*args):
total = 0;
for value in args:
total *= value
return total
2 Answers
Trevor J
Python Web Development Techdegree Student 2,107 Pointsdef 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
givens
7,484 PointsMarcoβ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.
Marco Koopman
5,290 PointsMarco Koopman
5,290 PointsOk thanks! I get it now :)