Python官方提供的模块,就叫做内置模块。
主要包含:日期时间模块,数学计算模块,正则表达式模块。
import math
a=math.ceil(2.4)
b=math.floor(2.4)
c=math.pow(4,2)
d=math.degrees(0.5*math.pi)
f=math.radians(180/math.pi)
print(“{0} {1} {2} {3} {4}”.format(a,b,c,d,f))
datetime:包含时间和日期
date:只包含日期
time:只包含时间
timedelta:计算时间跨度
tzinfo:时区信息
正则表达式指预定好一个“字符串模板”,通过这个“字符串模板”可以匹配查找和替换那些匹配“字符串模板”的字符串。
import re
p = r"\w+@robsence.com"
email = “Alex_wang0001@robosence.com”
m = re.match(p,email)
type(m)
print(m)
import re
p = r"\w+@robsence.com"
text = “email is Alex_wang0001@robosence.com.”
m = re.search(p,text)
print(m)
正则表达式的字符串替换函数是sub(),该函数替换匹配的字符串,返回值是替换之后的字符串,其语法格式如下:
re.sub(pattern,repl,string,count=0)
import re
p = r"\d+"
text = “AAVV45CD78EER”
replace_text = re.sub(p," ",text)
print(replace_text)
replace_text = re.sub(p," ",text,count=1)
print(replace_text)
replace_text = re.sub(p," ",text,count=2)
print(replace_text)
在python中 使用re 模块中的split()函数进行字符串分割,该函数按照匹配的子字符串进行字符串分割,该函数按照匹配的子字符串进行分割,返回字符串列表对象,其语法格式如下:
re.split(pattern,string,maxsplit=0)
import re
p = r"\d+"
text = “AAVV45CD78EER”
replace_text = re.split(p,text)
print(replace_text)
replace_text = re.split(p,text,maxsplit=1)
print(replace_text)
replace_text = re.split(p,text,maxsplit=2)
print(replace_text)