I have a function that parses a file into a list. I\'m trying to return that list so I can use it in other functions.
def splitNet(): network = [] f
L=[1, 2, 3] def rl(l): return l [*ll] = rl(L) # ll is in a list ll # >>> [1, 2, 3] *t, = rl(L) # ll is in a tuple t # >>> [1, 2, 3]