fereria
1/5/2016 - 3:58 PM

arg argv test

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.')