python *arg, **arg
经常在看一些模块的时候,发现*arg, **arg这样的查了一下资料https://pythontips.com/2013/08/04/args-and-kwargs-in-python-explained/*arg, **arg的区别是*arg为非keyword的字符,而**arg为keyword字符举个例子>>> def test_var_args(f_a...