1、通过标签选择 # 选择所有title标签 soup.select("title") # 选择所有p标签中的第三个标签 soup.select("p:nth-of-type(3)") 相当于soup.select(p)[2] # 选择body标签下的所有a标签 soup.select("body ...
分类:
其他好文 时间:
2019-12-11 23:31:16
阅读次数:
316
爬虫模块(从网页上采集数据数据放置在网页标签里面)1.requests2.BeautifuSoup3.urllib4.urllib25.scrapy6.lxml爬取步骤1.获取标签的内容数据:<div><title><a>....找到标签里面的内容soup.div2.打开网页获取文件的内容soup.prettify()//打印本地文件的内容3.html源代码相同
分类:
其他好文 时间:
2019-12-09 19:19:57
阅读次数:
143
题意: 你有$n$个魔镜,第$i$个魔镜有$p_{i}$的概率说你美。 从第1天开始,你会依次询问魔镜$1-n$你美不美。 若第$i$个魔镜说你美则你明天会继续询问第$i+1$个魔镜。 否则你明天会从该魔镜前面第一个复活点魔镜开始询问。初始时只有魔镜1是复活点。 当第$n$个魔镜说你美的时候你会开心 ...
分类:
其他好文 时间:
2019-12-07 21:08:21
阅读次数:
105
贪心 #include <iostream> #include<algorithm> #include<string.h> #include<set> using namespace std; const int maxn=100010; int ans[maxn]; int a[4]; void ...
分类:
其他好文 时间:
2019-12-07 17:57:19
阅读次数:
217
链接: https://codeforces.com/contest/1265/problem/D 题意: An integer sequence is called beautiful if the difference between any two consecutive numbers is ...
分类:
其他好文 时间:
2019-12-07 01:19:52
阅读次数:
89
链接: https://codeforces.com/contest/1265/problem/C 题意: So the Beautiful Regional Contest (BeRC) has come to an end! n students took part in the contest ...
分类:
其他好文 时间:
2019-12-07 01:11:28
阅读次数:
176
链接: https://codeforces.com/contest/1265/problem/A 题意: A string is called beautiful if no two consecutive characters are equal. For example, "ababcb", ...
分类:
其他好文 时间:
2019-12-07 01:04:48
阅读次数:
147
爬虫:requests,beautifulsoup 词云:wordcloud,jieba 代码加注释: 1 # -*- coding: utf-8 -*- 2 import xlrd#读取excel 3 import xlwt#写入excel 4 import requests 5 import l ...
分类:
编程语言 时间:
2019-12-07 00:54:50
阅读次数:
203
1、以下选项不是Python数据分析方向第三方库是:???????????????????????????????????????????????????????????????????????????????? A、Numpy B、SciPy C、Scrapy D、Pandas 解析:Scrapy ...
分类:
编程语言 时间:
2019-12-06 21:42:16
阅读次数:
124
https://codeforces.com/contest/1265 这场的2E是1C的不带checkpoints的版本。 B Beautiful Numbers 题意:给一个数组是一个[1,n]的permutation。对每个m∈[1,n]问[1,m]是否连续存在在这个数组中。 题解: 首先,[ ...
分类:
其他好文 时间:
2019-12-06 11:23:06
阅读次数:
95