为了能返回多个值,函数直接return一个元组就行了。例如:. >>> def myfun(): ... return 1, 2, 3 ... >>> a, b, c = myfun() >>> a 1 >>> b 2 >>> c 3 ...
確定! 回上一頁