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

unpacking challenge

unpacking.py
def unpacker(*args):
    return args

val = unpacker('Python', 'rocks!')

1 Answer

Maxwell Newberry
Maxwell Newberry
7,693 Points

When we call unpacker() the return is a tuple, right? So if we want to assign the return values to different variables we can accomplish this by doing the following:

(val1, val2) = unpacker('Python', 'rocks!')

It worked !! Thanks so much.

Jin Ping Zhao
Jin Ping Zhao
5,966 Points

why do we need a parenthesis for val1, val2?