函式function ... def a(x, y): result = x + y*2 return result b = a(1,2) c = a(2,3) print(b) ... def test(x, y, z): return x+1, y+1, z+1 a, b, c = test(1, 2, ...
確定! 回上一頁