个人常用功能的代码
re.findall(r'src=(.*?).jpg',st,re.S|re.M)#返回列表
#-----------去掉不要的内容------------
import re
str = "*ssdjih256456/*我是"
str = re.sub("[A-Za-z0-9\?\、\╲\/\*\\\”、<\>\|]", "", str)
print(str)
》》我是
str=你是我
head,sep,tail=str.partition('是')
以是为中间分开三段
[file for file in files if file.endswith('.xls') or file.endswith('.xlsx')]