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 Unpacking Challenge

def unpacker (*args): return args val=unpacker('Python',rocks!')

How do i edit so that the tuple returned from the function call is unpacked into 2 variables,val1,val2

unpacking.py
def unpacker():
    return('Python','rocks!')

    val1,val2 = unpacker()
    print(val1)
    print(val2)

1 Answer

Steven Parker
Steven Parker
229,744 Points

The instructions say "Edit the variable assignment under the provided function ...", so all your work should be done only on the assignment line at the bottom. In particular, you don't want to make any changes to the function itself.

But you had the right idea, just assign the results to the two variables separated by a comma.