公共方法:字符串适掰、列表颂碧、元組、字典等都可以使用的方法就叫公共方法
1.運(yùn)算符的公共方法中有 +
类浪、*
载城、比較
、判斷
等费就,注意字典
的特殊性
操作符 | 描述 | 可用類型 |
---|---|---|
+ |
連接 | 字符串诉瓦、元組、列表 |
* |
重復(fù)輸出 | 字符串力细、元組睬澡、列表 |
in |
判斷是否存在 | 字符串、元組眠蚂、列表煞聪、字典(只驗(yàn)證key,不能驗(yàn)證value) |
not in |
判斷是否不存在 | 字符串逝慧、元組米绕、列表瑟捣、字典(只驗(yàn)證key,不能驗(yàn)證value) |
< > <= >= ==
|
比較 | 字符串栅干、元組迈套、列表 |
>>> list = [1,2]
>>> list * 2
[1, 2, 1, 2]
>>> list * 3
[1, 2, 1, 2, 1, 2]
2.內(nèi)置函數(shù):Python中本身就存在,可以直接調(diào)用的函數(shù)碱鳞。
函數(shù) | 描述 | 可用類型 |
---|---|---|
cmp(list1, list2) |
比較兩個(gè)列表的元素 在Python 3.x中已經(jīng)移除了cmp()函數(shù)桑李,但是可以直接用比較運(yùn)算符進(jìn)行計(jì)算
|
字符串、元組窿给、列表 |
len(list) |
列表元素個(gè)數(shù) | 字符串贵白、元組、列表崩泡、字典 |
max(list) |
返回列表元素最大值 | 字符串禁荒、元組、列表角撞、字典 |
min(list) |
返回列表元素最小值 | 字符串呛伴、元組、列表谒所、字典 |
del(item) |
刪除容器 | 字符串热康、元組(del 只能刪除整個(gè)元組)、列表劣领、字典 |
3.del
的兩種使用方式
① del
關(guān)鍵字: del item
>>> dict1 = {"name": "yanxueer", "age": "24"}
>>> del dict1["age"]
>>> dict1
{'name': 'yanxueer'}
② del
函數(shù):del(item)
>>> dict1 = {"name": "yanxueer", "age": "24"}
>>> del(dict1["age"])
>>> dict1
{'name': 'yanxueer'}
兩種方式等價(jià)
每日一言
成功一定有方法姐军,失敗一定有原因。