物件導向的三個屬性:
封裝:把功能顯示出來,隱藏具體實現**
繼承:python支援多繼承
多型:不同的人,對同一事物的不同看法
方法:類的一部分,物件呼叫的函式
函式:可以直接用函式名呼叫的**塊
裝飾器:
@classmethod :呼叫的時候用類名呼叫,類似static靜態函式
@property:像訪問屬性一樣呼叫方法,類似屬性封裝
呼叫父類的方法:super(類名,self).方法名()
子類型別判斷:
isinstance
issubclass
多型要素: 繼承
方法重寫
Python 程式設計 從入門到實踐
1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...
Python程式設計 從入門到實踐 1
內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...
python程式設計 從入門到實踐 隨記
python程式設計 從入門到實踐 upper 全部大寫 lower 全部小寫 title 首字母大寫 rstrip 暫時性刪除末尾字元 預設空格 lstrip 暫時性刪除首部字元 預設空格 strip 暫時性刪除首尾字元 預設空格 len 列表元素數量 長度 pop 彈出 擠出 元素 remove...