10個有用的Python字符串函數小結

前言

Python 字符串是一個內置的類型序列。字符串可用於處理 Python 中的文本數據。Python 字符串是 Unicode 點的不可變序列。在 Python 中創建字符串是最簡單易用的。要在 Python 中創建字符串,我們隻需將文本括在單引號和雙引號中。Python 對單引號和雙引號語句的處理方式相同。因此,在本文中,我們將討論 Python 中用於數據分析和數據操作的一些重要且有用的字符串函數,主要用於自然語言處理(NLP)。

我們將在本文中討論的 Python 字符串函數如下:

一、capitalize() 函數

capitalize() 函數返回一個字符串,其中第一個字符是大寫。
語法:string.capitalize()

示例 1:使給定句子中的第一個字母大寫

string = "CSDN is the largest developer community in China" 
print(string.capitalize())

輸出:
Csdn is the largest developer community in china

示例 2:如果第一個字符是數字而不是字符會發生什麼

string = '3th CSDN force plan activities are very good' 
print(string.capitalize())

輸出:
3th csdn force plan activities are very good

二、lower( ) 函數

lower() 函數返回一個字符串,其中給定字符串中的所有字符都是小寫。這個函數對符號和數字沒有任何作用,即,隻是忽略瞭這些東西。
語法:string.lower()
示例 1:小寫給定字符串

string = "Haiyong is an excellent CSDN blogger" 
print(string.lower())

輸出:
haiyong is an excellent csdn blogger

示例 2: 如果有數字而不是字符會發生什麼

string = '3th CSDN force plan activities are very good' 
print(string.lower())

輸出:
3th csdn force plan activities are very good

三、title( ) 函數

title() 函數返回一個字符串,其中字符串中每個單詞的第一個字符都是大寫。它就像標題或標題。
如果字符串中的任何單詞包含數字或符號,則此函數將其後的第一個字母轉換為大寫。
語法:string.title()

示例 1:使每個單詞的第一個字母大寫

string = "The blog you are reading will be on the hot list" 
print(string.title())

輸出:
The Blog You Are Reading Will Be On The Hot List

示例 2:如果有數字而不是字符會發生什麼

string = '10 useful Python string functions you must know' 
print(string.title())

輸出:
10 Useful Python String Functions You Must Know

四、casefold() 函數

casefold() 函數返回一個字符串,其中所有字符都是小寫。
這個函數類似於lower()函數,但是casefold()函數更強大,更激進,這意味著它將更多的字符轉換成小寫,並且在比較兩個字符串時會找到更多的匹配項,並且都使用casefold()進行轉換 功能。
語法:string.casefold()

示例 1:將給定的字符串變為小寫

string = "CSDN is the largest developer community in China" 
print(string.casefold())

輸出:
csdn is the largest developer community in china

示例 2:如果有數字而不是字符會發生什麼

string = '10 useful Python string functions you must know' 
print(string.casefold())

輸出:
10 useful python string functions you must know

五、upper( ) 函數

upper() 函數返回一個字符串,其中給定字符串中的所有字符都為大寫。這個函數對符號和數字沒有任何作用,即,隻是忽略瞭這些東西。
語法:string.upper()

示例 1:給定字符串的大寫

string = "CSDN is the largest developer community in China" 
print(string.upper())

輸出:
CSDN IS THE LARGEST DEVELOPER COMMUNITY IN CHINA

示例 2:如果有數字而不是字符會發生什麼

string = '10 useful Python string functions you must know' 
print(string.upper())

輸出:
10 USEFUL PYTHON STRING FUNCTIONS YOU MUST KNOW

六、count( ) 函數

count() 函數查找指定值(由用戶給定)在給定字符串中出現的次數。
語法:  string .count( value, start, end )

示例 1:返回值“CSDN ”在字符串中出現的次數

string = "CSDN is the largest developer community in China" 
print(string.count("CSDN "))

輸出:
1

示例 2: 返回值“CSDN ”在字符串中 從位置 8 到 16 出現的次數

string = "CSDN is the largest developer community in China" 
print(string.count("analytics", 8, 16))

輸出:
0

七、find( ) 函數

find() 函數查找指定值的第一次出現。如果在該字符串中找不到該值,則返回 -1。
find() 函數與 index() 函數幾乎相同,但唯一的區別是 index() 函數在找不到值時引發異常。
語法:string.find(value, start, end)

示例 1:文本中字母“d”第一次出現的位置是什麼?

string = "CSDN is the largest developer community in China" 
print(string.find("d"))

輸出:
20

示例 2:僅在位置 5 和 16 之間搜索時,字母“d”在文本中的哪個位置首次出現?

string = "CSDN is the largest developer community in China" 
print(string.find("d", 12, 22))

輸出:
20

示例 3:如果找不到該值,則 find() 函數返回 -1,但 index() 函數會引發異常

string = "CSDN is the largest developer community in China" 
print(string.find("d", 5, 10))

輸出:
-1

八、replace() 函數

replace() 函數用另一個指定的短語替換指定的短語。
註意:如果沒有指定任何其他內容,所有出現的指定短語都將被替換。
語法:  string .replace( oldvalue, newvalue, count )

示例 1:替換所有出現的單詞“developer ”

string = "CSDN is the largest developer community in China" 
print(string.replace("largest ", "best "))

輸出:
CSDN is the best developer community in China

示例 2:僅替換第一次出現的單詞“developer ”

string = "CSDN is China's largest developer community suitabsle for developer to learn" 
print(string.replace("developer ", "developers ", 1))

輸出:
CSDN is China’s largest developers community suitabsle for developer to learn

九、swapcase( ) 函數

swapcase() 函數返回一個字符串,其中所有大寫字母都是小寫字母,反之亦然。
語法:string.swapcase()
示例 1:將小寫字母變為大寫,將大寫字母變為小寫

string = "CSDN is the largest developer community in China" 
print(string.swapcase())

輸出:
csdn IS THE LARGEST DEVELOPER COMMUNITY IN cHINA

示例 2:如果有數字而不是字符會發生什麼

string = '3th CSDN force plan activities are very good' 
print(string.swapcase())

輸出:
3TH csdn FORCE PLAN ACTIVITIES ARE VERY GOOD

十、join () 函數

join() 函數獲取可迭代對象中的所有項並將它們連接成一個字符串。我們必須指定一個字符串作為分隔符。
語法:string.join(iterable)

示例 1:將給定元組中的所有項連接成一個字符串,使用 #(hashtag)字符作為分隔符

myTuple = ("Computer Scientist", "Programming Learning", "Python Programming") 
x = " # ".join(myTuple) 
print(x)

輸出:
Computer Scientist # Programming Learning # Python Programming

示例2:將給定字典中的所有項目連接成一個字符串,使用單詞“TEST”作為分隔符

myDict = {"name": "CSDN", "country": "China", "Technology": "Python Programming"} 
mySeparator = "TEST" 
x = mySeparator.join(myDict) 
print(x)

輸出:
nameTESTcountryTESTTechnology

到此這篇關於10個有用的Python字符串函數小結的文章就介紹到這瞭,更多相關Python字符串函數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: