In [1]:
def exampleFunc():
    return 3,4 # tuples are important in this case, you don't want this to change!

In [2]:
x, y = exampleFunc()

In [3]:
x


Out[3]:
3

In [4]:
y


Out[4]:
4

In [ ]: