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 trialcem günaltay
1,332 Pointsedit packer function task
def packer(*param): pass param
packer("x","y")
what's mistake i make??
def packer(*param):
pass param
packer('Functions', 'are', 'fun!')
1 Answer
Steven Parker
231,236 PointsAdding 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!
cem günaltay
1,332 Pointscem günaltay
1,332 PointsThanks you steven