4.Python4:requests

目录

1.requests爬虫原理

(1)requests是一个python的第三方库,主要用于发送http请求

2.正则表达式


python 复制代码
#正则表达式
import re,requests
str1='aceace'
#A(.*?)B,匹配A和B之间的值
print(re.findall('a(.*?)e',str1))


python 复制代码
import re,requests
str2='''hello computer
world
'''
print(re.findall('hello(.*?)world',str2))
print(re.findall('hello(.*?)world',str2,re.S))


相关推荐
测试19985 分钟前
2024软件测试面试热点问题
自动化测试·软件测试·python·测试工具·面试·职场和发展·压力测试
love_and_hope5 分钟前
Pytorch学习--神经网络--搭建小实战(手撕CIFAR 10 model structure)和 Sequential 的使用
人工智能·pytorch·python·深度学习·学习
海阔天空_201334 分钟前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
零意@42 分钟前
ubuntu切换不同版本的python
windows·python·ubuntu
思忖小下1 小时前
Python基础学习_01
python
q567315231 小时前
在 Bash 中获取 Python 模块变量列
开发语言·python·bash
是萝卜干呀1 小时前
Backend - Python 爬取网页数据并保存在Excel文件中
python·excel·table·xlwt·爬取网页数据
代码欢乐豆1 小时前
数据采集之selenium模拟登录
python·selenium·测试工具
狂奔solar2 小时前
yelp数据集上识别潜在的热门商家
开发语言·python
Tassel_YUE2 小时前
网络自动化04:python实现ACL匹配信息(主机与主机信息)
网络·python·自动化