language: Python (python 2.7.3)
date: 462 days 10 hours ago
link:
visibility: private
1
2
3
4
5
6
7
8
9
10
def f(*args):
    print(args)
 
f(*[1]+[2]*3) # -> (1, 2, 2, 2)
 
def g():
    return [2,3]
 
f(*[1]+g()) # -> (1, 2, 3)