函數的默認參數只初始化一次

函數的默認值只會建立一次,以後不會再變了,使用對象(列表、字典、實例)做爲默認值,會致使函數混亂html 官方說明 https://docs.python.org/2.7/tutorial/controlflow.html#default-argument-valuespython 示例web def f(a, L=[]): L.append(a) return L for i i
相關文章
相關標籤/搜索