運算子
python表示式
結果描述
支援的資料型別
+[1,2]+[3,4]
[1,2,3,4]
合併字串、列表、元組
*『hi』*4
[『hi』,』hi』,』hi』,』hi』]
複製字串、列表、元組
in3in(1,2,3)
true
元素是否存在
字串、列表、元組、字典
not in
4 not in(1,2,3)
true
元素是否不存在
字串、列表、元組、字典
序號方法描述1
cmp(item1,item2)
比較兩個值
2len(item)
計算容器中元素個數
3max(item)
返回元素中最大值
4min(item)
返回元素中最小值
5del(item)
刪除元素變數
注意:
1. cmp 在比較字典資料時,先比鍵,在比較值
2. len 在操作字典資料時,返回的是鍵值對個數
3. del 兩種用法
a. del 變數
b. del()
tuple = [(2,3),(4,5)]
tuple[0]
# out (2,3)
tuple[0][0]
# out 2
tuple[0][1]
# out 3
touple2 = touple+[(3)]
touple2
# out [(2,3),(4,5),3]
touple2[2]
# out 3
touple2[2][0]
# 錯誤 第三組沒有第二個元素
python 公共方法
運算子 python 表示式 結果描述 支援的資料型別 1,2 3,4 1,2,3,4 合併字串 列表 元組 hi 4 hi hi hi hi 複製字串 列表 元組 in3 in 1,2,3 true 元素是否存在 字串 列表 元組 字典 not in 4 not in 1,2,3 true 元素是...
python 公共方法
1.計算長度 value wangdianchao 計算字元個數 長度 number len value print number 2.索引取值 value wangdianchao 獲取value 0 位置的字元 number value 0 print number value wangdian...
Python的公共方法
完整的 for 迴圈語法 python 包含了以下內建函式 函式描述 備註len item 計算容器中元素個數 del item 刪除變數 del 有兩種方式 max item 返回容器中元素最大值 如果是字典,只針對 key 比較 min item 返回容器中元素最小值 如果是字典,只針對 key...