Python學習筆記

1.super關鍵字的使用方法  super(<當前類名>,self).<方法名>(<參數>)bash

2.__getattribute__(self,name):訪問name屬性是被調用,訪問__dict__時也會被調用。函數

    __getattr__(self,name):當name屬性找不到時被調用。ui

    __setattr__(self,name,value):給name屬性賦值時調用。code

    __delattr__(self,name):刪除屬性時調用。ip

這些函數相似於getter和setter的攔截器。rem

要注意死循環陷阱,在__getattribute__中使用__dict__時,須要使用超類的__getattribute__方法。get

3.安裝依賴,使用豆瓣的源pip

pip install -r requirements.txt -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
相關文章
相關標籤/搜索