def h(a, List = None): if List is None: List = [] List.append(a) return List h(2) # List = [2] h(3) # List = [3] h(4) # List = [4]. 這樣回傳 ...
確定! 回上一頁