Python 方法

<1> index()
在列表中查找值的下標,若是不存在,返回ValueError
若是有重複的值,就返回第一次出現的下標
spam = ['a','b','c']
spam.index('a')app

返回0ide

<2> append()
Python 方法
只能將參數添加到列表末尾spa

<3>insert()
Python 方法
在某一下標處,插入數據3d

<4>del()
Python 方法
刪除某下標的值blog

<5>remove()
Python 方法
刪除某個值排序

<6>sort()
Python 方法
對列表中的數值進行排序,排序是逆序
對列表中的字符串按照ascii碼排序
sort(str.lower)表示安裝普通字典排序ci

<7>3個字典方法 keys()、values()、items()rem

spam = {'name':'kaka','age':'37'}字符串

Python 方法

<8>get()方法
默認值爲0
Python 方法
spam.get至關於取某個key的valueget

<9> setdefault()方法
確保一個鍵存在,默認是0
Python 方法
結果:
Python 方法

<10>upper() lower()
upper()是將原來的字符串轉換爲大寫
lower()是將原來的字符串轉換爲小寫
Python 方法

Python 方法

<11>
isupper() 表示字符串都是大寫
islower() 表示字符串都是小寫
isalpha() 表示字符串只包含字母,而且不爲空
isalnum() 表示字符串只包含字母和數字,而且不爲空
isdecimal() 表示字符串只包含數字字符,而且不爲空
isspace() 表示字符串只包含空格、製表符和換行,而且不爲空
istitle() 以大寫字母開頭,後面都是小寫字母的單詞

<12> startswith() endswith()
'Hello world'.startswith('Hello') 返回爲True 表示以Hello爲開頭,那麼endswith() 表示以什麼字符串爲結尾

<13> join() 和 split()

join() 是把列表中的字符串鏈接成新的字符串
Python 方法
split()是將字符串拆分紅列表
Python 方法
Python 方法

<14>rjust() 右對齊
ljust() 左對齊
center() 中間對齊
Python 方法

<15>刪除空白字符
Python 方法

相關文章
相關標籤/搜索