您好,登錄后才能下訂單哦!
這篇文章主要介紹“python字符串的常用方法有哪些”,在日常操作中,相信很多人在python字符串的常用方法有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python字符串的常用方法有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
字符串就是一系列字符。字符串屬于不可變序列,在python中,用引號包裹的都是字符串,其中引號可以是單引號,雙引號,也可以是三引號(單,雙引號中的字符必須在一行,三引號中的字符可以分布在多行)
txt = 'hello world' # 使用單引號,字符串內(nèi)容必須在一行
txt1 = "hello python world " # 使用雙引號,字符串內(nèi)容必須在一行
# 使用三引號,字符串內(nèi)容可以分布在多行
txt2 = '''life is short
i use python '''
定義 find()方法返回該元素最小索引值(找不到返回-1) ????舉個栗子????返回"python"的最小索引值
txt = "hello python world." res = txt.find("python") print(res)
運行結(jié)果如下:
6
定義 index()方法返回該元素最小索引值(找不到元素會報錯) ????舉個栗子????返回"world"的最小索引值
txt = "hello python world." res = txt.index("world") print(res)
運行結(jié)果如下:
13
定義 startswith() 方法如果字符串以指定值開頭,返回True,否則返回False ????舉個栗子????判斷字符串是不是以"hello"開頭
txt = "hello python world." res = txt.startswith("hello") print(res)
運行結(jié)果如下:
True
定義 endswith() 方法如果字符串以指定值結(jié)束,返回True,否則返回False ????舉個栗子????判斷字符串是不是以"hello"結(jié)束
txt = "hello python world." res = txt.endswith("hello") print(res)
運行結(jié)果如下:
Flase
定義 count() 方法返回指定值在字符串中出現(xiàn)的次數(shù)。 ????舉個栗子????統(tǒng)計"o"出現(xiàn)次數(shù)
txt = "hello python world." res = txt.count("o") print(res)
運行結(jié)果如下:
3
定義 join() 方法獲取可迭代對象中的所有項目,并將它們連接為一個字符串。必須將字符串指定為分隔符 ????舉個栗子????使用"-"作為分割符,將列表中的所有項連接到字符串中
res = ['h','e','l','l','o'] print('-'.join(res))
運行結(jié)果如下:
h-e-l-l-o
定義 upper()方法將字符串全部轉(zhuǎn)為大寫 ????舉個栗子????將字符串"hello python world"全部轉(zhuǎn)為大寫
tet = "hello python world" res = txt.upper() print(res)
運行結(jié)果如下:
HELLO WORLD
定義 lower()方法將字符串全部轉(zhuǎn)為小寫 ????舉個栗子????將字符串"HELLO PYTHON WORLD"全部轉(zhuǎn)為小寫
tet = "HELLO PYTHON WORLD" res = txt.lower() print(res)
運行結(jié)果如下:
hello python world
定義 split()方法以指定字符分割字符串,并返回列表 ????舉個栗子????以?號作為分隔符,分割字符串
txt = "hello?python?world" res = txt.split("?") print(res)
運行結(jié)果如下:
['hello', 'python', 'world']
????擴展????分割后打印還是原字符串(字符串是不可變類型,分割操作是復(fù)制一份原字符串,更改的是復(fù)制出來的那一份)
txt = "hello?python?world" res = txt.split("?") # 打印分割后的 print(res) # 打印原字符串 print(txt)
['hello', 'python', 'world'] hello?python?world
定義 strip()方法刪除字符串兩端的空格 ????舉個栗子????刪除hello兩端的空格
txt = " hello " res = txt.strip() print(res)
運行結(jié)果如下:
hello
定義 replace()方法以指定內(nèi)容替換掉被指定內(nèi)容(默認(rèn)替換全部,可指定替換次數(shù)) ????舉個栗子????以java替換python
txt = 'hello python world' res = txt.replace('python','java') print(res)
運行結(jié)果如下:
hello java world
????擴展????替換后打印還是原字符串(字符串是不可變類型,替換操作是復(fù)制一份原字符串,更改的是復(fù)制出來的那一份)
txt = 'hello python world' res = txt.replace('python','java') # 打印替換后的 print(res) # 打印原字符串 print(txt)
hello java world
hello python world
到此,關(guān)于“python字符串的常用方法有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。