Function Python

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