会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
流菏
博客园
首页
新随笔
联系
订阅
管理
2020年10月17日
关于visual studio2019的scanf格式不安全
摘要: 2020.10.17,第一次被visual studio2019坑 开启了自从安装后便没用过的VS2019,想要重新打下课本的代码,直接给我当头一棒(提示错误) 用课本的scanf会提示不安全,然后建议我们换成scanf_s,而且需要注意,要在每个&参数后加上要输入的char的大小,简单说就是加个数
阅读全文
posted @ 2020-10-17 22:58 流菏
阅读(818)
评论(0)
推荐(0)
2020年9月25日
爬取百度热搜前10
摘要: 第一、主题式网络爬虫名称:爬取百度热搜第二、主题式网络爬虫爬取的内容:百度热搜前10第三、主题式网络爬虫设计方案概述: 1、确定百度热搜网页:http://top.baidu.com/ 2、进行Htmls页面解析 3、正式进行爬取网页内容 4、进行可视化并进行数据持久化 5、附上总代码 6、自我总结
阅读全文
posted @ 2020-09-25 21:40 流菏
阅读(688)
评论(0)
推荐(0)
2020年4月24日
爬取微博热搜
摘要: import requests from bs4 import BeautifulSoup r = requests.get("https://s.weibo.com/top/summary")#微博热搜排行榜 soup = BeautifulSoup(r.text, 'lxml') items =
阅读全文
posted @ 2020-04-24 18:14 流菏
阅读(239)
评论(0)
推荐(0)
2020年3月21日
微博热搜
摘要: import requests from bs4 import BeautifulSoup r = requests.get("https://s.weibo.com/top/summary")#微博热搜排行榜 soup = BeautifulSoup(r.text, 'lxml') items =
阅读全文
posted @ 2020-03-21 17:57 流菏
阅读(415)
评论(0)
推荐(0)
公告