一:
1。常用資料型別
intstr
bool
folat
list
dict
settuple
type
2.常用字串操作
strip()
split()
join()
replace()
isinstance()
3.常用for迴圈:多層巢狀取多層資料
enumerate()
雙層資料一般使用雙for巢狀迴圈
4.函式的封裝
函式:可變長引數(*agrs,**kwagrs)
建議:如果有**需要複製,就需要把這段**封裝函式。
5.類與繼承
超繼承初始化後,self就代表父類
super().__init__("父類的初始化引數")
6.未完待續
Python基礎總結
如果字串裡面有很多字元都需要轉義,就需要加很多 為了簡化,python還允許用r 表示 內部的字串預設不轉義,可以自己試試 print t print r t t 我們可以比較容易的將字典 dict 型別轉為字串 string 型別。通過遍歷dict中的所有元素就可以實現字典到字串的轉換 for k...
Python基礎總結
輸入 模組 執行指令碼 在指令碼的第一行表明直譯器的位置即可在linux中不必顯示的呼叫python直譯器而執行指令碼 注釋字串 字串拼接 str repr和長字串 通用的序列操作 切片str hello print str 2 4 切片的引數 序列相加 乘法 成員資格 長度 最大值 最小值 列表 ...
Python基礎總結
python2.x 與 python3.x 的區別 推薦學習 注釋 這是注釋 tab 設定為四個空格 輸入和輸出 轉義字元 n 換行,t 製表符,print what s this 結果 可以使用 r 預設內部字串不轉義 print n print r n 換行 除了 n 還可以使用 表示多行 pr...