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 Functions, Packing, and Unpacking Packing and Unpacking Packing Challenge

cem günaltay
cem günaltay
1,332 Points

edit packer function task

def packer(*param): pass param

packer("x","y")

what's mistake i make??

packing.py
def packer(*param):
    pass param

packer('Functions', 'are', 'fun!')

1 Answer

Steven Parker
Steven Parker
229,744 Points

Adding a term to "pass" causes a syntax error.

And the instructions don't say this, but apparently the challenge expects the new argument to be named "args".

You might want to make a bug report to the Support folks about that second issue. If you're the first to spot it, you should get an "Exterminator" badge! :beetle: