As mentioned here, you can use the star for unpacking an unknown number of variables (like in functions), but only in python 3:
>>> a, *b = (1, 2, 3
from sys import argv script=argv def Fun(arg1, *argv): print "First argument :", script for arg in argv: print"Your variable is:", arg Fun('scrpit', 'first', 'second', 'third')