python中常用字串的用法

2021-09-25 20:25:21 字數 683 閱讀 3851

i = 「ni hao wo jiao tester」

i.capotalize()#首字母大寫

i.center(20)#居中顯示固定的字元

i.count('n')#計數,計算該字母出現多少次

i.endswith('y')#是否以給定的結尾,是返回true

i.startwith('n')#是否以給定的開頭,是返回true

i.find('i')#返回下標,如果字元不存在就列印為:-1

i.index()#返回下標,如果字元不存在就報錯

i.upper()#全部大寫

i.lower()#全部小寫

i.istitle()#首字母大寫,其他為小寫為ture

i.isupper()#判斷是否全部大寫

i.islower()#判斷是否全部小寫

i.retrip()#去掉右端空格

i.lstrip()#去掉左端空格

i.swapcase()#大小寫轉換

**i.spilt()#分割符**

**i.strip()#移除字串頭尾指定的字元**

**i.isalpha() #方法檢測字串是否只由字母組成。**

**i.replace('old','new') #方法把字串中的 old(舊字串) 替換成 new(新字串)**

python中常用字串

轉義字元 因為一些特殊字元是python中的關鍵字或一些特殊的概念如換行。所以以特殊字元 開頭。構造轉義字元。n 換行 t 製表符 單引號 雙引號 反斜槓 for i in abc print i a b c hello 4 0 了解 字串 count 子字串 搜尋子串出現次數 xyaxyaxy c...

Python中常用字串 函式

在 python 有各種各樣的string操作函式。在歷史上string類在 python 中經歷了一段輪迴的歷史。在最開始的時候,python 有乙個專門的string的module,要使用string的方法要先import,但後來由於眾多的 python 使用者的建議,從 python 2.0開...

Python中常用字串處理

s 你好,hello len s 8 s 0 你 username mark password payayawhip s password is format username,password mark s password is payayawhip si suffixes kb mb gb t...