Python
文章平均质量分 56
努力推石头的西西弗斯
无问西东
展开
-
基于Python生成Markdown的标题序号
import sys import os import time import re headline = ['##','###','####','#####','######'] title_sign_list = [] """用于判断标题产生环境""" titles_added_number = [] """保存嵌入了编号的标题,用于产生新编号""" is_continue = 'n' suf = '.' """给某一行添加编号""" def add_number_for_line(line_whi原创 2021-11-23 17:24:56 · 1390 阅读 · 0 评论 -
Python网络爬虫半小时入门指南
文章目录Python 爬虫入门指南网络爬虫前置知识年轻人的第一个爬虫程序Requests库安装Requests库核心方法介绍Response对象response.textresponse.status_coderesponse.encodingresponse.contentresponse.json() Python 爬虫入门指南 网络爬虫 网络爬虫是一种按照一定的规则,自动地抓取万维网信息的程序或者脚本。 通常,爬虫程序由三部分组成,获得网页、解析网页和存储数据。 前置知识 大概科普级别就原创 2021-11-23 15:08:59 · 957 阅读 · 0 评论