Python面向對象進階之閉包

閉包 1. 函數引用 def test1(): print('---start---') #調用函數 test1() #引用函數 res=test1 print(id(res)) print(id(test1)) #通過引用調用函數 res()  結果: D:\Anaconda\python.exe E:/pythonwork/黑馬/面向對象進階之閉包.py ---start---
相關文章
相關標籤/搜索