defwrite_multiple_items(file,separator,*args):file.write(separator.join(args))
normally, these variadic arguments will be last in the list of formal parameters, because they scoop up all remaining input arguments that are passed to the function. any formal parameters which occur after the *args parameter are ‘keyword-only’ arguments, meaning that they can only be used as keywords rather than positional arguments.通常,这些变量参数将在正式参数列表中最后一个,因为它们获取传递给函数的所有剩余输入参数。在*args参数之后出现的任何正式参数都是“仅关键字”参数,这意味着它们只能用作关键字而不是位置参数。
>>> defconcat(*args,sep=/):... returnsep.join(args)...>>> concat(earth,mars,venus)'earth/mars/venus'>>>concat(earth,mars,venus,sep=.)'earth.mars.venus'