1.requests爬虫原理 (1)requests是一个python的第三方库,主要用于发送http请求 2.正则表达式 #正则表达式 import re,requests str1='aceace' #A(.*?)B,匹配A和B之间的值 print(re.findall('a(.*?)e',str1)) import re,requests str2='''hello computer world ''' print(re.findall('hello(.*?)world',str2)) print(re.findall('hello(.*?)world',str2,re.S))