當前位置:成語大全網 - 書法字典 - Python接收字典

Python接收字典

#函數傳遞參數

def func_args(?*vartuple):

args = []

#任何傳入的參數都會添加到列表中。

對於vartuple中的var:

?參數追加(變量)

返回參數

a = func_args("123 "," abc "," ABC "," 000 ")

打印(壹份)