int(..)
replace/find/join/strip/startswith/split/upper/lower/format
tempalte = "i am , age : "
v = tempalte.format(name='alex',age=19)
v = tempalte.format(**)
print(v)
索引、切片、迴圈 以及元素不能被修改
get/update/keys/values/items
for,索引
dic =
v = "k1" in dic
print(v)
v = "v1" in dic.values()
print(v)
true為1 false為0
bool(...)
none "" () {} 0 ==> false
可變:列表、字典
不可變:字串、數字、元組
直接訪問:數字
順序訪問:字串、列表、元組
容器型別:列表、元組、字典
原子:數字、字串
Python異常型別總結
assertionerror 斷言語句 assert 失敗 attributeerror 嘗試訪問未知的物件屬性 eoferror 使用者輸入檔案末尾標誌eof ctrl d floatingpointerror 浮點計算錯誤 generatorexit generator.close 方法被呼叫的...
Python基礎型別總結
一 基礎型別 1 數字 整數 int 長整數 long 浮點數 float 2 字串 1 文字str。單雙引號沒有任何區別。三引號區分多行字串 2 位元組 bytes 3 布林 true false 二 資料集 1 列表 list 資料集合,索引排序,方便增刪改查。2 元祖 tuple有序不可變資料...
Python 變數型別總結(二)
變數儲存在記憶體中的值。這就意味著在建立變數時會在記憶體中開闢乙個空間。基於變數的資料型別,直譯器會分配指定記憶體,並決定什麼資料可以被儲存在記憶體中。因此,變數可以指定不同的資料型別,這些變數可以儲存整數,小數或字元。python 中的變數賦值不需要型別宣告。每個變數在記憶體中建立,都包括變數的標...