python中什麼是閉包

當一個嵌套函數在其外部區域引用了一個值時,該嵌套函數就是一個閉包,其意義就是會記錄這個值 def out(x): def inside(): print(x) return inside() out(3)
相關文章
相關標籤/搜索