Clean python return assignment

python

Solution

You can use parentheses:

(
    one,
    two,
    three,
    four
) = range(4)

Problem

I have a method that returns multiple items. ``` def multiReturn(): return 1,2,3,4 ``` and Im assigning it on one line ``` one, two, three, four = multiReturn() ``` Is there a way to cleanup the above line Something like: ``` one, two, three, four = multiReturn() ``` because I have some variable names that have gotten large and the width of the page is bothering me. Any ideas to clean it up

Original source