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

Hussein Amr
Hussein Amr
2,461 Points

it works in workspaces

What's wrong with the code

twoples.py
def multiply(*args):
    for arg in args:
        return arg
multiply(4 * 6)

1 Answer

Ismail KOÇ
Ismail KOÇ
1,748 Points

assign in this mutiply func a number for ex:

i = 1  #this argument of lists multiply with i 

and after for loop end i will be multiply of all arguments.

    for arg in args:  #4 spaces
        return arg      #8 spaces

seems like return in for loop (because python has space sensitive), therefore move return 4 spaces backward. (delete 4 spaces)

for arg in args:
    i *= arg

i will be return multiply of list arguments to each other , so return has to be:

return i

and

multiply(4 * 6)

you do not need to add this in your program in this challenge.