【Python练习五】Python 正则与网络爬虫实战:专项练习(2道经典练习带你巩固基础——看完包会)

第一题

题目:

使用正则完成下列内容的匹配

  • 匹配陕西省区号 029-12345
  • 匹配邮政编码 745100
  • 匹配邮箱 lijian@xianoupeng.com
  • 匹配身份证号 62282519960504337X

代码:

python 复制代码
import re
# 1. 匹配陕西省区号 029-12345
pattern_area = r'^029-\d{5}$'  # 精确匹配 029- 开头,后接5位数字
test_area = '029-12345'
print("区号匹配:", re.match(pattern_area, test_area) is not None)

# 2. 匹配邮政编码 745100
pattern_post = r'^\d{6}$'  # 精确匹配6位数字
test_post = '745100'
print("邮编匹配:", re.match(pattern_post, test_post) is not None)

# 3. 匹配邮箱 lijian@xianoupeng.com
pattern_email = r'^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$'
test_email = 'lijian@xianoupeng.com'
print("邮箱匹配:", re.match(pattern_email, test_email) is not None)

# 4. 匹配身份证号 62282519960504337X
pattern_id = r'^\d{17}[\dXx]$'  # 17位数字 + 1位数字或X/x
test_id = '62282519960504337X'
print("身份证匹配:", re.match(pattern_id, test_id) is not None)

运行结果:


第二题

题目:

爬取学校官网,获取所有图片途径并将路径存储在本地文件中,使用装饰器完成

代码:

python 复制代码
import requests
import re

# 装饰器:记录爬取任务
def log_crawl_task(func):
    def wrapper(url):
        print(f"开始爬取: {url}")
        result = func(url)
        print(f"爬取完成,共获取 {len(result)} 条图片路径")
        return result
    return wrapper

# 爬取函数
@log_crawl_task
def crawl_school_images(url):
    try:
        # 基础请求配置,避免被反爬
        headers = {"User-Agent": "Mozilla/5.0"}
        response = requests.get(url, headers=headers, timeout=10)
        response.encoding = "utf-8"  # 确保中文路径不乱码
        
        # 正则提取img标签的src属性
        img_paths = re.findall(r'<img src="(.*?)"', response.text)
        return img_paths
    except Exception as e:
        print(f"爬取失败: {str(e)}")
        return []

# 保存路径到本地文件
def save_image_paths(paths):
    with open("学校图片路径.txt", "w", encoding="utf-8") as f:
        f.write("\n".join(paths))
    print("图片路径已保存到 学校图片路径.txt")

# 调用示例
if __name__ == "__main__":
    school_url = "https://www.cqcst.edu.cn"
    image_paths = crawl_school_images(school_url)
    if image_paths:
        save_image_paths(image_paths)
    else:
        print("未获取到任何图片路径")

运行结果:


相关推荐
zone77391 天前
001:简单 RAG 入门
后端·python·面试
F_Quant1 天前
🚀 Python打包踩坑指南:彻底解决 Nuitka --onefile 配置文件丢失与重启报错问题
python·操作系统
允许部分打工人先富起来1 天前
在node项目中执行python脚本
前端·python·node.js
IVEN_1 天前
Python OpenCV: RGB三色识别的最佳工程实践
python·opencv
haosend1 天前
AI时代,传统网络运维人员的转型指南
python·数据网络·网络自动化
曲幽1 天前
不止于JWT:用FastAPI的Depends实现细粒度权限控制
python·fastapi·web·jwt·rbac·permission·depends·abac
IVEN_2 天前
只会Python皮毛?深入理解这几点,轻松进阶全栈开发
python·全栈
Ray Liang2 天前
用六边形架构与整洁架构对比是伪命题?
java·python·c#·架构设计
AI攻城狮2 天前
如何给 AI Agent 做"断舍离":OpenClaw Session 自动清理实践
python
千寻girling2 天前
一份不可多得的 《 Python 》语言教程
人工智能·后端·python