Python 字串內建使用方法

2021-08-30 02:42:49 字數 3664 閱讀 8976

in [1]: hello_str.

hello_str.capitalize hello_str.isidentifier hello_str.rindex

hello_str.casefold hello_str.islower hello_str.rjust

hello_str.center hello_str.isnumeric hello_str.rpartition

hello_str.count hello_str.isprintable hello_str.rsplit

hello_str.encode hello_str.isspace hello_str.rstrip

hello_str.endswith hello_str.istitle hello_str.split

hello_str.expandtabs hello_str.isupper hello_str.splitlines

hello_str.find hello_str.join hello_str.startswith

hello_str.format hello_str.ljust hello_str.strip

hello_str.format_map hello_str.lower hello_str.swapcase

hello_str.index hello_str.lstrip hello_str.title

hello_str.isalnum hello_str.maketrans hello_str.translate

hello_str.isalpha hello_str.partition hello_str.upper

hello_str.isdecimal hello_str.replace hello_str.zfill

hello_str.isdigit hello_str.rfind

1) 判斷型別

方法說明

string.isspace()

如果 string 中只包含空格,則返回 true

string.isalnum()

如果 string 至少有乙個字元並且所有字元都是字母或數字則返回 true

string.isalpha()

如果 string 至少有乙個字元並且所有字元都是字母則返回 true

string.isdecimal()

如果 string 只包含數字則返回 true,全形數字

string.isdigit()

如果 string 只包含數字則返回 true,全形數字\u00b2

string.isnumeric()

如果 string 只包含數字則返回 true,全形數字漢字數字

string.istitle()

如果 string 是標題化的(每個單詞的首字母大寫)則返回 true

string.islower()

如果 string 中包含至少乙個區分大小寫的字元,並且所有這些(區分大小寫的)字元都是小寫,則返回 true

string.isupper()

如果 string 中包含至少乙個區分大小寫的字元,並且所有這些(區分大小寫的)字元都是大寫,則返回 true

2) 查詢和替換

方法說明

string.startswith(str)

檢查字串是否是以 str 開頭,是則返回 true

string.endswith(str)

檢查字串是否是以 str 結束,是則返回 true

string.find(str, start=0, end=len(string))

檢測 str 是否包含在 string 中,如果 start 和 end 指定範圍,則檢查是否包含在指定範圍內,如果是返回開始的索引值,否則返回-1

string.rfind(str, start=0, end=len(string))

類似於 find(),不過是從右邊開始查詢

string.index(str, start=0, end=len(string))

跟 find() 方法類似,不過如果 str 不在 string 會報錯

string.rindex(str, start=0, end=len(string))

類似於 index(),不過是從右邊開始

string.replace(old_str, new_str, num=string.count(old))

把 string 中的 old_str 替換成 new_str,如果 num 指定,則替換不超過 num 次

3) 大小寫轉換

方法說明

string.capitalize()

把字串的第乙個字元大寫

string.title()

把字串的每個單詞首字母大寫

string.lower()

轉換 string 中所有大寫字元為小寫

string.upper()

轉換 string 中的小寫字母為大寫

string.swapcase()

翻轉 string 中的大小寫

4) 文字對齊

方法說明

string.ljust(width)

返回乙個原字串左對齊,並使用空格填充至長度 width 的新字串

string.rjust(width)

返回乙個原字串右對齊,並使用空格填充至長度 width 的新字串

string.center(width)

返回乙個原字串居中,並使用空格填充至長度 width 的新字串

5) 去除空白字元

方法說明

string.lstrip()

截掉 string 左邊(開始)的空白字元

string.rstrip()

截掉 string 右邊(末尾)的空白字元

string.strip()

截掉 string 左右兩邊的空白字元

6) 拆分和連線

方法說明

string.partition(str)

把字串 string 分成乙個 3 元素的元組 (str前面, str, str後面)

string.rpartition(str)

類似於 partition() 方法,不過是從右邊開始查詢

string.split(str="", num)

以 str 為分隔符拆分 string,如果 num 有指定值,則僅分隔 num + 1 個子字串,str 預設包含 『\r』, 『\t』, 『\n』 和空格

string.splitlines()

按照行(』\r』, 『\n』, 『\r\n』)分隔,返回乙個包含各行作為元素的列表

string.join(seq)

以 string 作為分隔符,將 seq 中所有的元素(的字串表示)合併為乙個新的字串

python 字串使用方法

capitalize 把字串的第乙個字元改為大寫 casefold 把整個字串的所有字元改為小寫 center width 將字串居中,並使用空格填充至長度 width 的新字串 count sub start end 返回 sub 在字串裡邊出現的次數,start 和 end 引數表示範圍,可選。...

python字串使用方法歸納

字串的意思就是 一串字元 比如 hello,charlie 是乙個字串,how are you?也是乙個字串。python 要求字串必須使用引號括起來,使用單引號也行,使用雙引號也行,只要兩邊的引號能配對即可。capitalize 把字串的第乙個字元改為大寫 casefold 把整個字串的所有字元改...

字串使用方法

我們來看看在使用字串的過程中可能會遇到的一些特殊情況 首先,什麼時候用雙引號,什麼時候用單引號呢?一致性原則 在表示乙個完整的字串的時候,在字串的兩頭,要麼全是雙引號,要麼全是單引號。如 1 string1 it is a wonderful world 2 string2 it is a wond...