Python數據分析學習六--字元串操作

Python數據分析學習六--字元串操作

來自專欄 daacheng的Python學習總結

Python數據分析之字元串操作

字元串對象方法

#字元串對象方法 #split(),分割字元串,返回一個列表 var = a,b ,c .split(,) #[a, b , c ] #strip()去除空白符 lstrip() rstrip() pieces = [x.strip() for x in var] pieces #[a, b, c] #join()列錶轉換成字元串 .join(pieces) #abc #子串的定位find()、index() abc.find(:) #find()方法,如果沒有返回-1 abc.find(a) #find()方法如果有,返回索引 abc.index(b) #index()方法如果有返回索引,沒有拋異常 #count()記錄子串出現的次數 aaabc.count(a) #3 #replace()替換 abcaddd.replace(d,) #abca

正則表達式re

import re #正則表達式模塊findall()、match()、search()、split()、sub()、subn() text = a b c re.split(s+,text) #[a, b, c] regex = re.compile(s+) regex.split(text) #[a, b, c] p=re.compile(a) p.findall(bcasa) #[a, a] p.search(cda).span() #(2, 3) print(p.match(cda)) #None p.sub(1,cda) #cd1

推薦閱讀:

Python 在 Linux 系統運維中都有哪些應用?
(一)複雜系統的簡單例子
Python基礎入門
新的方式畫出個部分血管網路並保存
100G Python從入門到精通全套資料!

TAG:數據分析 | Python |