def func_args(?*vartuple):
args =【】
#任何傳入的參數都會添加到列表中。
對於vartuple中的var:
?args . append(var)
返回參數
a = func _ args(“123““ABC““ABC““000“)
打印(a)