class Math: def sum(self, *input_x): # *input_x 表示「收合(Collapse)」多個傳入參數,變成一個參數print('Math: sum: type(input_x):', type(input_x)) total = 0 ...
確定! 回上一頁