标签:nbsp UI var doc 语法 pytho 函数定义 额外 元组
带元组(或者非关键字可变长参数)的函数普遍的语法如下:
def function_name([formal_args,] *vargs_tuple):
"function_documentation_string"
function_body_suite
使用变量参数字典来应对额外关键字参数的函数定义的语法:
def function_name([formal_args,][*vargst,] **vargsd):
function_documentation_string function_body_suite
一个*代表元组,2个*代表字典
标签:nbsp UI var doc 语法 pytho 函数定义 额外 元组
原文地址:http://www.cnblogs.com/nullbaby/p/7084756.html