re.findall 用法

def findall(pattern, string, flags=0):

第一个参数,正则表达式

第二个参数,搜索的是那些字符串

第三个参数,匹配的模式,其中re.S使匹配包括换行在内的所有字符。findall()函数是逐行匹配的。

page_text = requests.get(url=url,headers=headers).text
ex = '
.*?' img_src_list = re.findall(ex,page_text,re.S)

你可能感兴趣的:(爬虫,python)