python字串的常用操作方法小結

2022-09-28 20:12:16 字數 3913 閱讀 3659

1.去除空格

str.strip():刪除字串兩邊的指定字元,括號的寫入指定字元,預設為空格

>>> a=' hello '

>>> b=a.strip()

>>> print(b)

hewww.cppcns.comllo

str.lstrip():刪除字串左邊的指定字元,括號的寫入指定字元,預設為空格

>>> a=' hello '

>>> b=a.lstrip()

>>> print(b)

hello #右邊空格可能看的不是很明顯

str.rstrip():刪除字串右邊指定字元,預設為空格

>&> a=' hello '

>>> b=a.rstrip()

>>> print(b)

hello

2.複製字串

>>> a='hello world'

>>> b=a

>>> print(a,b)

hello world hello world

3.連線字串

+:連線2個字串

>>> a='hello '

>>> b='world'

>>> print(a+b)

hello world

注:此方法又稱為 "萬惡的加號",因為使用加號連線2個字串會呼叫靜態函式string_concat(register pystringobject *a ,register pyobject * b),在這個函式中會開闢一塊大小是a+b的記憶體的和的儲存單元,然後將a,b字串拷貝進去。如果是ratqpln個字串相連 那麼會開闢n-1次記憶體,是非常耗費資源的。

str.join:連線2個字串,可指定連線符號(關於join,讀者可以自己去檢視一些相關資料)

>&程式設計客棧gt;> a='hello '

>>> b='####'

>>> a.join(b)

'#hello #hello #hello #'

4.查詢字串

#str.index 和str.find 功能相同,區別在於find()查詢失敗ratqpl會返回-1,不會影響程式執行。一般用find!=-1或者find>-1來作為判斷條件。

str.index:檢測字串中是否包含子字串str,可指定範圍

a='hello world'

>>> a.index('l')

2>>> a.index('x')

traceback (most recent call last):

file "", line 1, in

a.index('x')

valueerror: substring not found

str.find:檢測字串中是否包含子字串str,可指定範圍

>>> a='hello world'

>>> a.find('l')

2>>> a.find('x')

-15.比較字串

str.cmp:比較兩個物件,並根據結果返回乙個整數。x< y,返回值是負數 ,x>y 返回的值為正數。

#python3已經沒有該方法,官方文件是這麼寫的:

the cmp() function should be treated as gone, and the __cmp__() special method is no longer supported. use __lt__() for sorting, __eq__() with __hash__(), and other rich comparisons as needed. (if you really need the cmp() functionality, you could use the expression (a > b) - (a < b) as the equivalent for cmp(a, b).)

大意就是cmp()函式已經「離開」了,如果你真的需要cmp()函式,你可以用表示式(a > b) - (a < b)代替cmp(a,b)

>>> a=100

>>> b=80

>>> cmp(a,b)

16.是否包含指定字串

in |not in

>>> a='hello world'

>>> 'hello' in a

true

>>> '123' not in a

true

7.字串長度

str.len

>>> a='hello world'

>>> print(len(a))

118.字串中字母大小寫轉換

s.lower() #轉換為小寫

>>> a='hello world'

>>> print(a.lower())

hello world

s.upper() #轉換為大寫

>>> a='hello world'

>>> print(a.upper())

hello world

s.swapcase() #大小寫互換

>>> a='hello world'

>>> print(a.swapcase())

hello world

s.capitalize() #首字母大寫

>>> a='hello world'

>>> print(a.capitalize())

hello world

9.將字串放入中心位置可指定長度以及位置兩邊字元

str.center()

>>> a='hello world'

>>> print(a.center(40,'*'))

**************hello world***************

10.字串統計

>>> a='hello world'

>>> print(a.count('l'))

311.字串的測試、判斷函式,這一類函式在string模組中沒有,這些函式返回的都是bool值

s.startswith(prefix[,start[,end]]) #是否以prefix開頭

s.endswith(suffix[,start[,end]]) #以suffix結尾

s.isalnum() #是否全是字母和數字,並至少有乙個字元

s.isalpha() #是否全是字母,並至少有乙個字元

s.isdigit() #是否全是數字,並至少有乙個字元

s.isspace() #是否全是空白字元,並至少有乙個字元

s.islower() #s中的字母是否全是小寫

s.isupper() #s中的字母是否便是大寫

s.istitle() #s是否是首字母大寫的

12.字串切片

str = '0123456789′

print str[0:3] #擷取第一位到第三位的字元

print str[:] #擷取字串的全部字元

print str[6:] #擷取第七個字元到結尾

print str[:-3] #擷取從頭開始到倒數第三個字元之前

print str[2] #擷取第三個字元

print str[-1] #擷取倒數第乙個字元

print str[::-1] #創造乙個與原字串順序相反的字串

print str[-3:-1] #擷取倒數第三位與倒數第一位之前的字元

print str[-3:] #擷取倒數第三位到結尾

print str[:-5:-3] #逆序擷取,擷取倒數第五位數與倒數第三位數之間

這裡需要強調的是,字串物件是不可改變的,也就是說在python建立乙個字串後,你不能把這個字元中的某一部分改變。任何上面的函式改變了字串後,都會返回乙個新的字串,原字串並沒有變。

本文標題: python字串的常用操作方法小結

本文位址:

python 字串常用操作

coding utf 8 str1 dafhgfshhk lfhgj hhs dhfs len str1 計算長度,當有中文時需要顯示轉換為utf 8編碼,否則計算的結果會有誤差 str2 中文 len str2 結果是 6 將字串顯示轉換為utf 8 str3 str2.decode utf 8 ...

python 字串常用操作

name my name is yy print name.capitalize 首字母大寫 print name.count y 統計y的個數 print name.center 50,以name內容沒中心,不夠的用 代替 print name.endswith yy 以yy結尾 布林值 name...

python 字串常用操作

name monicao name.capitalize 首字母大寫 print name.capitalize print name.count o 統計某個字元的個數 name1 my name is monica print name1.center 50,返回字串寬度 即長度 為50的字串,...