Mega Code Archive

 
Categories / Python / Function
 

Any number of parameter

def f(*args): print args f() f(1) f(1,2,3,4)