Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Hussein Amr
2,461 Pointsit works in workspaces
What's wrong with the code
def multiply(*args):
for arg in args:
return arg
multiply(4 * 6)
1 Answer

Ismail KOÇ
1,748 Pointsassign 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.