def func(a, b, c, d): print a, b, c, dargs = (1, 2)args += (3, 4)func(*args)args = {'a': 1, 'b': 2, 'c': 3}args['d'] = 4func(**args)func(*(1, 2), **{'d': 4, 'c': 4})func(1, *(2, 3), **{'d': 4})func(1, c=3, *(2,), **{'d': 4})
Name (required)
email (will not be published) (required)
Website