python默认从左到右匹配参数名
无默认值必须传参
允许通过变量名传参 ,此时变量位置不影响
def int(*args): *收集不匹配的位置参数
def int(**args): **只对关键字参数有效
函数中调用*/** 为解包语法
本文标题: 参数
本文链接:https://www.haomeiwen.com/subject/jirpvttx.html
网友评论