Python String函數

来源:https://www.cnblogs.com/Fantac/archive/2019/07/15/11192076.html
-Advertisement-
Play Games

1.str.capitalize() 將原字元串內的首字母轉成大寫,其他部分小寫,再返回新字元串 Output: 2.str.upper() 將原字元串的字母轉為大寫 Output: 3.str.lower() 將原字元串的字母轉為小寫 Output: 4.str.swapcase() 將原字元串內 ...


s = "abcaDa a"
s2 = "123a abc ABCSAa s "
s3 = "\tas \t\tb123"
s4 = '    &abc123 c ##    '

1.str.capitalize()

將原字元串內的首字母轉成大寫,其他部分小寫,再返回新字元串

print("s.capitalize() = {function}".format(function = s.capitalize())) 

Output:

s.capitalize() = Abcada a

2.str.upper()

將原字元串的字母轉為大寫

print("s.upper() = {function}".format(function = s.upper()))

Output:

s.upper() = ABCADA A

3.str.lower()

將原字元串的字母轉為小寫

print("s.lower() = {function}".format(function = s.lower()))

Output:

s.lower() = abcada a

4.str.swapcase()

將原字元串內的大寫小寫反轉

print("s.swapcase() = {function}".format(function = s.swapcase()))

Output:

s.swapcase() = ABCAdA A

5.str.title()

原字元串內如果有特殊字元(包括數字)連接字母,則將特殊字元後的首個英文字母轉化為大寫形態,並返回新字元串

print("s2.title() = {function}".format(function = s2.title()))

Output:

s2.title() = 123A Abc Abcsaa S

6.str.center()

str.center(寬度,填充字元) 將字元串以居中的格式返回,若寬度值比len(s)小則返回原字元串,填充以從左到右為規則,填充字元的預設值為空格,值可以自己更改

print("s2.center() = {function}".format(function = s2.center(19,'&')))
print("s2.center() = {function}".format(function = s2.center(20,'&')))

Output:

#s2 = 123a abc ABCSAa s
s2.center() = &123a abc ABCSAa s 
s2.center() = &123a abc ABCSAa s &

7.str.expandtabs()

str.expandtabs(tabsize = 8) 將原字元串中\t以前的字元補滿8位(預設),tabsize的值從0-7即8位,在0-7中任意取值則預設tabsize = 8,此後

往上+1,就相當於增加一個空格

print("s3.expandtabs ={function}".format(function = s3.expandtabs()))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(0)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(5)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(8)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(9)))

Output:

#s3 = "\tas \t\tb123"
s3.expandtabs =        as              b123
s3.expandtabs =as b123
s3.expandtabs =     as        b123
s3.expandtabs =        as              b123
s3.expandtabs =         as                b123

8.String_len = len(str)

公共方法,計算字元串的長度

print("s2_length = {0}".format(len(s2))) 

Output:

s2_length = 18

9.str.startswith()

str.startswith(substr,strbeg,strend) 判斷原字元串是否以子字元串開頭 可以用切片的形式進行判斷(以顧頭不顧尾為原則),這裡的strend要比strbeg大否則傳回false 函數結果返回一個布爾值

print("s.startswith() = {function}".format(function = s.startswith('ab')))
print("s.startswith() = {function}".format(function = s.startswith('D',2)))
print("s.startswith() = {function}".format(function = s.startswith('c',2,5)))
print("s.startswith() = {function}".format(function = s.startswith('c',2,100)))

Output:

#s = abcaDa a
s.startswith() = True
s.startswith() = False
s.startswith() = True
s.startswith() = True

10.str.endswith()

str.endswith(substr,strbeg,strend) 判斷字元串是否以子字元串結尾 結果返回布爾值,這裡的strend要比strbeg小否則傳回false 和startswith()一樣要從左到右為原則

print("s.endswith() = {function}".format(function = s.endswith('Da a')))
print("s.endswith() = {function}".format(function = s.endswith('a',-1)))
print("s.endswith() = {function}".format(function = s.endswith('Da a',-4)))
print("s.endswith() = {function}".format(function = s.endswith('c',-8,-5)))
print("s.endswith() = {function}".format(function = s.endswith('c',-7,-5)))
print("s.endswith() = {function}".format(function = s.endswith('c',-7,-4)))
print("s.endswith() = {function}".format(function = s.endswith('Da a',-1,6)))

Output:

#s = abcaDa a
s.endswith() = True
s.endswith() = True
s.endswith() = True
s.endswith() = True
s.endswith() = True
s.endswith() = False
s.endswith() = False

11.str.find()

str.find(substr,strbeg,strend) 尋找字元串中是否存在該子字元串並返回其索引,找不到則返回-1 若同時出現相同的字元串則返回最先找到

的子字元串索引,切片(遵循顧頭不顧尾原則)

print("s.find() = {function}".format(function = s.find('a')))
print("s.find() = {function}".format(function = s.find('ab')))
print("s.find() = {function}".format(function = s.find('f')))
print("s.find() = {function}".format(function = s.find('b',-8,-5)))
print("s.find() = {function}".format(function = s.find('b',0)))

Output:

s.find() = 0
s.find() = 0
s.find() = -1
s.find() = 1
s.find() = 1

12.str.index()

str.index(substr,strbeg,strend) 與find()的功能大致相同,但子字元串不存在於字元串中就會報錯,結果返回索引

print("s.index() = {function}".format(function = s.index('a')))
print("s.index() = {function}".format(function = s.index('ab')))
print("s.index() = {function}".format(function = s.index('D',-8,5)))
print("s.index() = {function}".format(function = s.index('b',0)))

Output:

#s = abcaDa a
s.index() = 0
s.index() = 0
s.index() = 4
s.index() = 1

13.str.strip()

str.strip([chars]) 去掉字元串中首和尾的字元 預設刪除的是空格 chars可以自行更改

print("s3.strip() = {function}".format(function = s3.strip()))

Output:

#s3 =    as              b123
s3.strip() = as                 b123

14.str.rstrip()

str.rstrip([chars]) 去掉字元串右邊的字元 預設刪除的是空格 返回值為刪除後的新字元串

print("s4.rstrip() = {function}".format(function = s4.rstrip()))
print("s4.rstrip() = {function}".format(function = s4.rstrip('# c')))

Output:

#s4 = '    &abc123 c ##    '
s4.rstrip() =     &abc123 c ##
s4.rstrip() =     &abc123

15.str.lstrip()

str.lstrip([chars]) 去掉字元串左邊的字元 預設刪除的是空格 返回值為刪除後的新字元串

print("s4.lstrip() = {function}".format(function = s4.lstrip()))
print("s4.lstrip() = {function}".format(function = s4.lstrip(' &')))

Output:

#s4 = '    &abc123 c ##    '
s4.lstrip() = &abc123 c ##    
s4.lstrip() = abc123 c ## 

16.str.count()

str.count(substr,start,end) start為第一個字元,這裡預設為0 end未結束搜索的位置,預設為len(s) 主要功能統計字元串中某個字元出現

的個數並返回個數

print("s.count() = {function}".format(function = s.count('a')))
print("s.count() = {function}".format(function = s.count('Fa')))
print("s.count() = {function}".format(function = s.count('a',-7)))

Output:

#s = "abcaDa a"
s.count() = 4
s.count() = 0
s.count() = 3

17.str.split()

str.split(substr = " ",num = s.count(str)) 主要作用分割字元串 這裡的substr預設以空格分割,num為總共切割的次數,若num有數值怎分割num+1個字元串 分割後將字元串轉化為list形式 substr會在分割後消失

print("s2.split() = {function}".format(function = s2.split()))
print("s2.split() = {function}".format(function = s2.split(' ',0)))
print("s2.split() = {function}".format(function = s2.split('a',1)))
print("s2.split() = {function}".format(function = s2.split('a',-1)))

Output:

#s2 = "123a abc ABCSAa s "
s2.split() = ['123a', 'abc', 'ABCSAa', 's']
s2.split() = ['123a abc ABCSAa s ']
s2.split() = ['123', ' abc ABCSAa s ']
s2.split() = ['123', ' ', 'bc ABCSA', ' s ']

18.str.format()

三種用法:

print("s = {}|s2 = {}|s3 = {}".format(s,s2,s3))
print("s = {0}|s2 = {1}|s3 = {2}|s = {0}|s3 = {2}".format(s,s2,s3))
print("s = {s}{sep}s2 = {s2}{sep}s3 = {s3}".format(s = s,s2 = s2,s3 = s3,sep = '|'))

Output:

s = abcaDa a|s2 = 123a abc ABCSAa s |s3 =       as              b123
s = abcaDa a|s2 = 123a abc ABCSAa s |s3 =       as              b123|s = abcaDa a|s3 =  as              b123
s = abcaDa a|s2 = 123a abc ABCSAa s |s3 =       as              b123

當占位符不按順序寫會報錯 tuple index out of range

19.str.replace()

s.replace(old,new,max) old為將被替換的字元串,new為替換old的字元串,max為替換次數將字元串進行替換,若old未存在原字元串內則返回原

字元串

print("s.replace() = {function}".format(function = s.replace('ac','A')))
print("s.replace() = {function}".format(function = s.replace('a','A')))
print("s.replace() = {function}".format(function = s.replace('a','A',2)))

Output:

#s = "abcaDa a"
s.replace() = abcaDa a
s.replace() = AbcADA A
s.replace() = AbcADa a

20.is函數

  str.isalnum()  #判斷是否由數字或字母組成

  str.isalpha()    #判斷是否含有字母

  str.isdecimal()  #判斷是否含有十進位數字

  str.isdigit()  #判斷是否含有數字

  str.islower()  #判斷是否含有小寫字母

  str.isupper()  #判斷是否含有大寫字母

  str.isnumeric()  #判斷是否只包含數字字元

  str.isspace()  #判斷是否只含有空格

  str.istitle()  #判斷是否經過title()函數處理過後的標題

21.join()

str.join(sequence)  sequence為要連接的元素序列,函數作用是將指定字元串與原字元串中每一個字元一一連接

s = 'alex'
print('&&'.join(s)) #a&&l&&e&&x
l = ['a','l','e','x']
print('+'.join(l))  #a+l+e+x
t = ('a','b')
print('*'.join(t))  #a*b

PS:String索引對應

 

 

 

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • SpringCloud系列教程 | 第十四篇:Spring Cloud Gateway高級應用 Springboot: 2.1.6.RELEASE SpringCloud: Greenwich.SR1 如無特殊說明,本系列教程全採用以上版本 上一篇我們聊了Gateway和註冊中心的使用,以及 Gat ...
  • 在目前的工作中,我對Java中的Stream和Lambda表達式都使用得很多,之前也寫了兩篇文章來總結對應的知識。 "024:Java流實現Shell:cat 1.log | grep a | sort | uniq c | sort rn" "函數式編程讓你忘記設計模式" 不過對於Optional ...
  • 這裡先簡單說下最大堆的基本性質: 最大堆一定是完全二叉樹 當父節點為 n 時,左孩子為 n 2 + 1,右孩子為 n 2 + 2 當孩子為 n 時,其父節點為: (n 1) / 2 這一點很重要,在後面初始化的時候會用到 父節點大於等於左孩子和右孩子,但左孩子不一定大於右孩子 瞭解以上基本性質之後, ...
  • 一、文件 1.定義:長久保存信息的一種信息集合 2.常用操作:(1)打開關閉(2)讀寫內容(3)查找 3.open函數 (1)意義:打開文件,帶有很多參數 (2)第一個參數:必須有,文件的路徑和名稱 mode:表明文件用什麼方式打開 i.r代表只讀的方式打開;ii.w:寫方式打開,會覆蓋以前的內容; ...
  • Mybatis映射文件的SQL深入 (Mybatis今天學的不多,看了半天的mysql必知必會) 動態sql語句 if語句,查詢一個用戶的時候,有可能根據地址查詢,用戶名查詢,性別查詢等,所以需要動態sql語句 1.介面中新添加方法 2.配置文件的寫法,根據條件查詢 3.測試方法 mybatis中的 ...
  • "Add Two Numbers" Example: Code // // main.cpp // 兩個數字的加法操作 // // Created by mac on 2019/7/14. // Copyright © 2019 mac. All rights reserved. // includ ...
  • C++編譯過程 C++ 編譯過程在介紹編譯器之前,先簡單地說一下 C++ 的編譯過程,以便理解編譯器的工作。編譯(compiling)並不意味著只創建僅僅一個可執行文件。創建一個可執行文件是一個多級過程,其中最重要的過程是預處理(preprocessing),編譯(compliation)和鏈接(l ...
  • 一、基本簡介 1、基礎概念 在矩陣中,若數值為0的元素數目遠遠多於非0元素的數目,並且非0元素分佈沒有規律時,則稱該矩陣為稀疏矩陣;與之相反,若非0元素數目占大多數時,則稱該矩陣為稠密矩陣。定義非零元素的總數比上矩陣所有元素的總數為矩陣的稠密度。 2、處理方式 3、圖解描述 4、五子棋場景 二、代碼 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...