<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
字串是Python中基本的資料型別,幾乎在每個Python程式中都會使用到它。
slicing切片,按照一定條件從列表或者元組中取出部分元素(比如特定範圍、索引、分割值)
s = ' hello ' s = s[:] print(s) # hello s = ' hello ' s = s[3:8] print(s) # hello
strip()方法用於移除字串頭尾指定的字元(預設為空格或換行符)或字元序列。
s = ' hello '.strip() print(s) # hello s = '###hello###'.strip() print(s) # ###hello###
在使用strip()方法時,預設去除空格或換行符,所以#號並沒有去除。
可以給strip()方法新增指定字元,如下所示。
s = '###hello###'.strip('#') print(s) # hello
此外當指定內容不在頭尾處時,並不會被去除。
s = ' n t hellon'.strip('n') print(s) # # hello s = 'n t hellon'.strip('n') print(s) # hello
第一個n前有個空格,所以只會去取尾部的換行符。
最後strip()方法的引數是剝離其值的所有組合,這個可以看下面這個案例。
s = 'www.baidu.com'.strip('cmow.') print(s) # baidu
最外層的首字元和尾字元引數值將從字串中剝離。字元從前端移除,直到到達一個不包含在字元集中的字串字元為止。
在尾部也會發生類似的動作。
移除字串左側指定的字元(預設為空格或換行符)或字元序列。
s = ' hello '.lstrip() print(s) # hello
同樣的,可以移除左側所有包含在字元集中的字串。
s = 'Arthur: three!'.lstrip('Arthur: ') print(s) # ee!
移除字串右側指定的字元(預設為空格或換行符)或字元序列。
s = ' hello '.rstrip() print(s) # hello
Python3.9中移除字首的函數。
# python 3.9 s = 'Arthur: three!'.removeprefix('Arthur: ') print(s) # three!
和strip()相比,並不會把字元集中的字串進行逐個匹配。
Python3.9中移除字尾的函數。
s = 'HelloPython'.removesuffix('Python') print(s) # Hello
把字串中的內容替換成指定的內容。
s = 'string methods in python'.replace(' ', '-') print(s) # string-methods-in-python s = 'string methods in python'.replace(' ', '') print(s) # stringmethodsinpython
re是正則的表示式,sub是substitute表示替換。
re.sub則是相對複雜點的替換。
import re s = "string methods in python" s2 = s.replace(' ', '-') print(s2) # string----methods-in-python s = "string methods in python" s2 = re.sub("s+", "-", s) print(s2) # string-methods-in-python
和replace()做對比,使用re.sub()進行替換操作,確實更高階點。
對字串做分隔處理,最終的結果是一個列表。
s = 'string methods in python'.split() print(s) # ['string', 'methods', 'in', 'python']
當不指定分隔符時,預設按空格分隔。
s = 'string methods in python'.split(',') print(s) # ['string methods in python']
此外,還可以指定字串的分隔次數。
s = 'string methods in python'.split(' ', maxsplit=1) print(s) # ['string', 'methods in python']
從右側開始對字串進行分隔。
s = 'string methods in python'.rsplit(' ', maxsplit=1) print(s) # ['string methods in', 'python']
string.join(seq)。以string作為分隔符,將seq中所有的元素(的字串表示)合併為一個新的字串。
list_of_strings = ['string', 'methods', 'in', 'python'] s = '-'.join(list_of_strings) print(s) # string-methods-in-python list_of_strings = ['string', 'methods', 'in', 'python'] s = ' '.join(list_of_strings) print(s) # string methods in python
將字串中的字母,全部轉換為大寫。
s = 'simple is better than complex'.upper() print(s) # SIMPLE IS BETTER THAN COMPLEX
將字串中的字母,全部轉換為小寫。
s = 'SIMPLE IS BETTER THAN COMPLEX'.lower() print(s) # simple is better than complex
將字串中的首個字母轉換為大寫。
s = 'simple is better than complex'.capitalize() print(s) # Simple is better than complex
判斷字串中的所有字母是否都為小寫,是則返回True,否則返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.islower()) # False print('simple is better than complex'.islower()) # True
判斷字串中的所有字母是否都為大寫,是則返回True,否則返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.isupper()) # True print('SIMPLE IS BETTER THAN complex'.isupper()) # False
如果字串至少有一個字元並且所有字元都是字母,則返回 True,否則返回 False。
s = 'python' print(s.isalpha()) # True s = '123' print(s.isalpha()) # False s = 'python123' print(s.isalpha()) # False s = 'python-123' print(s.isalpha()) # False
如果字串中只包含數位字元,則返回 True,否則返回 False。
s = 'python' print(s.isnumeric()) # False s = '123' print(s.isnumeric()) # True s = 'python123' print(s.isnumeric()) # False s = 'python-123' print(s.isnumeric()) # False
如果字串中至少有一個字元並且所有字元都是字母或數位,則返回True,否則返回 False。
s = 'python' print(s.isalnum()) # True s = '123' print(s.isalnum()) # True s = 'python123' print(s.isalnum()) # True s = 'python-123' print(s.isalnum()) # False
返回指定內容在字串中出現的次數。
n = 'hello world'.count('o') print(n) # 2 n = 'hello world'.count('oo') print(n) # 0
檢測指定內容是否包含在字串中,如果是返回開始的索引值,否則返回-1。
s = 'Machine Learning' idx = s.find('a') print(idx) print(s[idx:]) # 1 # achine Learning s = 'Machine Learning' idx = s.find('aa') print(idx) print(s[idx:]) # -1 # g
此外,還可以指定開始的範圍。
s = 'Machine Learning' idx = s.find('a', 2) print(idx) print(s[idx:]) # 10 # arning
類似於find()函數,返回字串最後一次出現的位置,如果沒有匹配項則返回 -1。
s = 'Machine Learning' idx = s.rfind('a') print(idx) print(s[idx:]) # 10 # arning
檢查字串是否是以指定內容開頭,是則返回 True,否則返回 False。
print('Patrick'.startswith('P')) # True
檢查字串是否是以指定內容結束,是則返回 True,否則返回 False。
print('Patrick'.endswith('ck')) # True
string.partition(str),有點像find()和split()的結合體。
從str出現的第一個位置起,把字串string分成一個3 元素的元組(string_pre_str,str,string_post_str),如果string中不包含str則 string_pre_str==string。
s = 'Python is awesome!' parts = s.partition('is') print(parts) # ('Python ', 'is', ' awesome!') s = 'Python is awesome!' parts = s.partition('was') print(parts) # ('Python is awesome!', '', '')
返回一個原字串居中,並使用空格填充至長度width的新字串。
s = 'Python is awesome!' s = s.center(30, '-') print(s) # ------Python is awesome!------
返回一個原字串左對齊,並使用空格填充至長度width的新字串。
s = 'Python is awesome!' s = s.ljust(30, '-') print(s) # Python is awesome!------------
返回一個原字串右對齊,並使用空格填充至長度width的新字串。
s = 'Python is awesome!' s = s.rjust(30, '-') print(s) # ------------Python is awesome!
f-string是格式化字串的新語法。
與其他格式化方式相比,它們不僅更易讀,更簡潔,不易出錯,而且速度更快!
num = 1 language = 'Python' s = f'{language} is the number {num} in programming!' print(s) # Python is the number 1 in programming! num = 1 language = 'Python' s = f'{language} is the number {num*8} in programming!' print(s) # Python is the number 8 in programming!
翻轉字串中的字母大小寫。
s = 'HELLO world' s = s.swapcase() print(s) # hello WORLD
string.zfill(width)。
返回長度為width的字串,原字串string右對齊,前面填充0。
s = '42'.zfill(5) print(s) # 00042 s = '-42'.zfill(5) print(s) # -0042 s = '+42'.zfill(5) print(s) # +0042
到此這篇關於31個必備的Python字串方法總結的文章就介紹到這了,更多相關Python字串方法內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45