arg argv test
# -*- coding: utf-8 -*- def test(a, b, c='hoge hoge', d='fuga fuga'): print a print b print c print d def testB(*arg, **argv): test(*arg, **argv) testB(1, 2, c='hello world!!', d='this is a pen.')